Actions

Level Check Code: Difference between revisions

From Rabbi Blog

mNo edit summary
mNo edit summary
Line 4: Line 4:
I have POS 1-5 saved as separate files on the SD card under POS\ for quick reference, as well as this master file for a full check.
I have POS 1-5 saved as separate files on the SD card under POS\ for quick reference, as well as this master file for a full check.


<code>
<hr>
 
<pre>
; 9 Point Level Check - RB
; 9 Point Level Check - RB


Line 70: Line 72:
  ; Disable Motors
  ; Disable Motors
M84
M84
</code>
</pre>


[[Category:3D Printing]]
[[Category:3D Printing]]

Revision as of 10:51, 22 September 2019

Save as .gcode for printer and run. Performs a 9 point check on bed leveling.

I have POS 1-5 saved as separate files on the SD card under POS\ for quick reference, as well as this master file for a full check.


; 9 Point Level Check - RB

G90

; POSITION 1
G1 Z4
G1 X32 Y36
G1 Z0
M0

; POSITION 2
G1 Z4
G1 X32 Y206
G1 Z0
M0

; POSITION 3
G1 Z4
G1 X202 Y206
G1 Z0
M0

; POSITION 4
G1 Z4
G1 X202 Y36
G1 Z0
M0

; POSITION 5
G1 Z4
G1 X117 Y121
G1 Z0
M0

; POSITION 6
G1 Z4
G1 X32 Y121
G1 Z0
M0

; POSITION 7
G1 Z4
G1 X117 Y206
G1 Z0
M0

; POSITION 8
G1 Z4
G1 X202 Y121
G1 Z0
M0

; POSITION 9
G1 Z4
G1 X117 Y36
G1 Z0
M0

; Home
G1 Z4
G1 X0 Y0
G1 Z0

 ; Disable Motors
M84