Yezariael
Well-known member
Hi,
I use Tap and sensorless homing. I implemented the homing_override like stated in the documentation for sensorless homing but I can't get Tap to home z in the middle of the build plate. How can I do that?
Configuration:
[homing_override]
axes: xyz
gcode:
{% set home_all = 'X' not in params and 'Y' not in params and 'Z' not in params %}
{% if home_all or 'X' in params %}
_HOME_X
{% endif %}
{% if home_all or 'Y' in params %}
_HOME_Y
{% endif %}
{% if home_all or 'Z' in params %}
G28 Z
G1 Z10
{% endif %}
If I add G0 or G1 to the Z section it always states "must home axes first"
Thanks!
I use Tap and sensorless homing. I implemented the homing_override like stated in the documentation for sensorless homing but I can't get Tap to home z in the middle of the build plate. How can I do that?
Configuration:
[homing_override]
axes: xyz
gcode:
{% set home_all = 'X' not in params and 'Y' not in params and 'Z' not in params %}
{% if home_all or 'X' in params %}
_HOME_X
{% endif %}
{% if home_all or 'Y' in params %}
_HOME_Y
{% endif %}
{% if home_all or 'Z' in params %}
G28 Z
G1 Z10
{% endif %}
If I add G0 or G1 to the Z section it always states "must home axes first"
Thanks!