I am new to using klipper and am using a custom Z probing setup that doubles as an endstop. I have been unable to get the homing override to work. Everytime I press home it finds x and y and then starts moving z before moving x and y to a place on the bed. Is there something wrong with either of my files? Only some of the macros present in the DAB.cfg are present in the UI… not sure if that’s related.
It seems that the macro [gcode_macro _dabSettings] is not properly closed/finished
The config dab.cfg is messed up:
variable_dist_y_collision_zone: 20.0
variable_dist_x_move_latch: 11.5
variable_bed_drop_after_z_home: 15.0
gcode:
# SET_GCODE_VARIABLE MACRO=_dab_settings VARIABLE=debug VALUE={printer.heater_bed.target}
# # == homing_override start =====================================================
# # Uncomment [homing_override] after you have tuned position_endstop,
# # position_min, position_max in [stepper_x] and [stepper_y]
# # ==============================================================================
[homing_override]
axes: z
set_position_x:10 # explicitly set a coord even before homing
set_position_y:10 # explicitly set a coord even before homing
set_position_z:10 # explicitly set a coord even before homing
gcode:
{% set is_x_homed = False %}
These are the original files from the author. He hasn’t been the greatest at helping atm but maybe the issues you’re noticing in my files are different from his?