hi everybody I have problems with my skew correction…. I can’t find this in my printer.cfg

No description
4 Replies
blacksmithforlife
this is from the old 1.x template and doesn't exist anymore however you can see it still will load it if you define it in your USER OVERRIDES section https://github.com/Rat-OS/RatOS-configuration/blob/v2.x/macros.cfg#L496-L498 something like
[gcode_macro RatOS]
variable_skew_profile: "my_skew"
[gcode_macro RatOS]
variable_skew_profile: "my_skew"
chrisforce
chrisforce5mo ago
Ah ok thx! So I dint have to activate it, only in the start end end print code in the slicer right ?
blacksmithforlife
in my printer.cfg
[skew_correction my_skew_profile]
xy_skew = 0.00651604041558
xz_skew = 0.0
yz_skew = 0.0
[skew_correction my_skew_profile]
xy_skew = 0.00651604041558
xz_skew = 0.0
yz_skew = 0.0
and in my start gcode:
SKEW_PROFILE LOAD=my_skew_profile
SKEW_PROFILE LOAD=my_skew_profile
end gcode:
SET_SKEW CLEAR=1
SET_SKEW CLEAR=1
chrisforce
chrisforce5mo ago
Thanks