mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-06 21:44:13 -06:00
homing_override: Add axes config parameter
Added a config parameter to define the homing override axes. This way one can still home x and y axis without the z-probe cycle coming in the way. Signed-off-by: Hans Raaf <hr-klipper@oderwat.de> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
5f640699b7
commit
e110e1fecc
2 changed files with 29 additions and 1 deletions
|
@ -486,10 +486,16 @@
|
|||
#[homing_override]
|
||||
#gcode:
|
||||
# A list of G-Code commands (one per line) to execute in place of
|
||||
# all G28 commands found in the normal g-code input. If a G28 is
|
||||
# G28 commands found in the normal g-code input. If a G28 is
|
||||
# contained in this list of commands then it will invoke the normal
|
||||
# homing procedure for the printer. The commands listed here must
|
||||
# home all axes. This parameter must be provided.
|
||||
#axes: xyz
|
||||
# The axes to override. For example, if this is set to "z" then the
|
||||
# override script will only be run when the z axis is homed (eg, via
|
||||
# a "G28" or "G28 Z0" command). Note, the override script should
|
||||
# still home all axes. The default is "xyz" which causes the
|
||||
# override script to be run in place of all G28 commands.
|
||||
#set_position_x:
|
||||
#set_position_y:
|
||||
#set_position_z:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue