https://torte71.github.io/InsideSovolKlipperScreen/orca_profiles.html
Some filaments (like PLA, or some transparent PETG) require a lower z-offset for good bed adhesion than others.
Adjusting the z-offset e.g. by -0.05mm can be achieved by by adding SET_GCODE_OFFSET Z=-0.05
to the slicer's filament start code and resetting it in the filament end code (add SET_GCODE_OFFSET Z=0.0
there).
The filament start end end codes can be found in Orca's material settings window under the “Advanced” tab.
That offset should be reset in your printer.cfg
as well (to ensure it is reset e.g. after a cancelled print). Add SET_GCODE_OFFSET Z=0.0
to the end of the sections [gcode_macro CANCEL_PRINT]
and [gcode_macro END_PRINT]
.
Summarized:
SET_GCODE_OFFSET Z=-0.05
to slicers filament start codeSET_GCODE_OFFSET Z=0.0
to[gcode_macro CANCEL_PRINT]
[gcode_macro END_PRINT]
Back to start