How can I change the PAUSE macro position? #126
-
Hi, thanks for your work. I really like your macros. I'd like to ask how can I change the park position to be at x0 y235 (y limit) instead of x0 y0. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
All the config parameters are described in globals.cfg. You just copy the relevant variable from there into the Lines 40 to 45 in b53e538 There's also one special parking position for the Y axis, used at the end of the print (where the toolhead is most often parked in the rear): Lines 64 to 65 in b53e538 There's a whole mess of config options specific to |
Beta Was this translation helpful? Give feedback.
All the config parameters are described in globals.cfg. You just copy the relevant variable from there into the
[gcode_macro _km_options]
section in your own config and set the value to whatever you like. The base parking positions are here:klipper-macros/globals.cfg
Lines 40 to 45 in b53e538
There's also one special parking position for the Y …