mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-08 06:24:03 -06:00
toolhead: Report which axes are homed via get_status()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
282af0220e
commit
3683273936
9 changed files with 28 additions and 24 deletions
|
@ -45,9 +45,9 @@ class WinchKinematics:
|
|||
def check_move(self, move):
|
||||
# XXX - boundary checks and speed limits not implemented
|
||||
pass
|
||||
def get_status(self):
|
||||
def get_status(self, eventtime):
|
||||
# XXX - homed_checks and rail limits not implemented
|
||||
return {'homed_axes': 'XYZ'}
|
||||
return {'homed_axes': 'xyz'}
|
||||
|
||||
def load_kinematics(toolhead, config):
|
||||
return WinchKinematics(toolhead, config)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue