Sensorless homing Integration? #165
-
Hi, I've been using your macros a while and they are awesome! Thank you! I recently converted one of my Voron 2.4's over to full canbus with sensorless homing. When setting up sensorless homing it was required to create a homing.cfg file to modify homing which I believe interferes/overlaps with your macros. Any advise on what to do/modify to make them play well/work together? I did attempt to modify the lines below referencing "G28 X/Y" to "G28.6245197 X/ G28.6245197 Y" which enables me to print fine however when the print head parks (after a print for example) in the back left corner this creates another problem where the X/Y are at max position and therefore have no room to move if/when a new G28 is triggered. Could I just take out the "G1 Y-10 F1200" and G1 X-10 F1200" ? Thanks for any help! This is what is listed on vorondesign: [gcode_macro _HOME_X]
[gcode_macro _HOME_Y]
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
You'll want to set the following variables in your
There are comments explaining each of these variables in globals.cfg. |
Beta Was this translation helpful? Give feedback.
-
I just went sensorless and klicky from a microswitch and omron sensor. I'm running into the same error. I fixed the sensorless.cfg so no more errors, but, Now I'm getting errors with: https://github.com/jlas1/Klicky-Probe/blob/main/Klipper_macros/klicky-macros.cfg I renamed all the G28 commands to G28.6245197 in that file as well. Does this workaround only work with 1 overlapping macro? I.E. I can only use G28.6245197 in once but that is now recursively failing out on the klicky-macros.cfg file? Or is there something else in that file which is conflicting but showing up as G28 in the status?
|
Beta Was this translation helpful? Give feedback.
-
In case anyone else finds this later, I fixed the issue. The klicky z tilt adjust cfg needed to be changed from G28 as well as the Klicky Macros file. The error message isn't just catching on G28 commands but also catches on the notifications in the klicky macros even though it's just text. You need to change all instances of G28 text, not just ones actively used as a command. |
Beta Was this translation helpful? Give feedback.
You'll want to set the following variables in your
[gcode_macro _km_options]
section to leave some distance from the end of the axis for parking positions:variable_park_x
- Defaults to zero;10
should workvariable_park_y
- Defaults to zero;10
should workvariable_start_end_park_y
- Defaults to print_max Y; set it to 10 less than the print maxThere are comments explaining each of these variables in globals.cfg.