Skip bed levelling?
TL;DR: Is there a way to stop my MK3 from doing bed leveling via G code?
I use some custom G code in Octoprint using the Custom control editor add-on.
Mostly it is for tuning and servicing my printers. Not for printing.
For instance: I have this code to put the printer into service mode when ever I want to clean it or fix something:
M117 Prepair for service
G28 ; Home all
G1 Z5 F400
G90 ; Absolute positioning
M82 ; Extruder in absolute mode
G92 E0 ; Reset extruder position
G1 Z0 X0 Y0
G0 F9000 X110 Y110 Z110
M117 Printer service
M140 S0 ; Disable heated bed
M104 T0 S0 ; disable extruder
M84 ; Turn steppers off
But the MK3 kicks off bed leveling with G28 (Home all).
Any ideas? Yes I know it is not really a train smash to do bed leveling even if I do not want to print. But one day I might want to fix something that has to do with the bed itself...
Re: Skip bed levelling?
TL;DR: Is there a way to stop my MK3 from doing bed leveling via G code?
I use some custom G code in Octoprint using the Custom control editor add-on.
Mostly it is for tuning and servicing my printers. Not for printing.
For instance: I have this code to put the printer into service mode when ever I want to clean it or fix something:
M117 Prepair for service
G28 ; Home all
G1 Z5 F400
G90 ; Absolute positioning
M82 ; Extruder in absolute mode
G92 E0 ; Reset extruder position
G1 Z0 X0 Y0
G0 F9000 X110 Y110 Z110
M117 Printer service
M140 S0 ; Disable heated bed
M104 T0 S0 ; disable extruder
M84 ; Turn steppers off
But the MK3 kicks off bed leveling with G28 (Home all).
Any ideas? Yes I know it is not really a train smash to do bed leveling even if I do not want to print. But one day I might want to fix something that has to do with the bed itself...
Instead of "G28" try "G28 W ; home all without mesh bed level"
DJ
DJ
Re: Skip bed levelling?
Perfect, thank you!
RE: Skip bed levelling?
@djspathis
I want to skip levelling because a print I want to do will have two different colors on same level by doing that the second auto level will mess up the first color of print so is there a way to skip this auto level