[REQUEST] Support for dockable probe #167
Replies: 3 comments 2 replies
-
Klipper already provides wrapping as a generic mechanism for that sort of customization, and I don't want to complicate the macros by adding another layer of indirection for doing the same thing. |
Beta Was this translation helpful? Give feedback.
-
Having the same issue, @CarnageMarkus how did you fix it on your side? |
Beta Was this translation helpful? Give feedback.
-
@HitLuca I'm not @CarnageMarkus but i fixed mine by using this as my start Gcode. I am also using the klicky macros at https://github.com/Harrypulvirenti/Klack-Probe-Macros M190 S0 ; Remove this if autoemit_temperature_commands is off in Prusa Slicer 2.6 and later I do not know if this is the most efficient way, but it is working. |
Beta Was this translation helpful? Give feedback.
-
Hi, first of all thanks for great set of macros.
I successfully setup dockable probe with this library, but it was rather problematic (lots of strange errors).
To integrate dockable probe, I need to wrap original
BED_MESH_CALIBRATE
to do docking operations before and after calling the originalBED_MESH_CALIBRATE
. Since this library renames the originalBED_MESH_CALIBRATE
macro, this requires edits to ensure the library calls my custom calibrate function with docking operations, and then that it actually calls the_KM_BED_MESH_CALIBRATE_BASE
I think this could be made easier if we could customize the name of a command that
bed_mesh_calibrate_fast
callsSimilarly, the issue with recursive G28 could be also resolved by having option to customize macro called instead of G28
Beta Was this translation helpful? Give feedback.
All reactions