Bed level without z probe
-
I’m having a hard time finding info on using bed leveling manually without a z probe. Do I just do g31 with T0 and then as I run g32 will it pause at each point in bed.g and let me bring the nozzle to the bed manually?
-
Or do you just use mode 0 in M558 and all elsestays the same except the actual manual zeroing at each point?
-
-
That requires a working z probe. I dont have one.
-
I just made a quick bed leveling macro .
; Bed level
G1 Z5 ; Move up 5mm
G28 XY ; Home XY
G1 Y50 X50
G28 U ; Home Z
M291 P"Bottom left" S2
G28 U ; Home Z
M291 P"Home" S2G1 Z5 ; Move up 5mm
G1 X350 ; Move X to 400mm
G28 U ; Home Z
M291 P"Bottom Right" S2
G28 U ; Home Z
M291 P"Home" S2G1 Z5 ; Move up 5mm
G1 Y350 ; Move Y to 350mm
G28 U ; Home Z
M291 P"Top Right" S2
G28 U ; Home Z
M291 P"Home" S2G1 Z5 ; Move up 5mm
G1 X50 ;
G28 U ; Home Z
M291 P"Top Right" S2
G28 U ; Home Z
M291 P"Home" S2
G1 Z5 ; Move up 5mm
G1 X200 Y200 ;
G28 U ; Home Z
M291 P"Centre" S2G28 Z ; Home Z
M291 P"Home" S2CHANGE THE home U to home Z , Mine is dual lead screws .
-
@4lathe said in Bed level without z probe:
That requires a working z probe. I dont have one.
Sorry! I'm pretty sure there is a document explaining what you want to do, but I can't find it...
-
To perform any operation that normally requires bed probing when you don't have a Z probe, use Z probe type P0 in the M558 command. Then do everything else as normal. DWC and PanelDue will prompt you to jog the nozzle down to the bed in order to do a "probe".
-
Great. Thx much.