mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-23 22:54:10 -06:00
kinematics: Add get_status() method to kinematics
Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>
This commit is contained in:
parent
09f323a038
commit
f958542ebb
6 changed files with 19 additions and 0 deletions
|
@ -57,6 +57,9 @@ class WinchKinematics:
|
|||
self._check_motor_enable(print_time)
|
||||
for s in self.steppers:
|
||||
s.step_itersolve(move.cmove)
|
||||
def get_status(self):
|
||||
# XXX - homed_checks and rail limits not implemented
|
||||
return {'homed_axes': 'XYZ'}
|
||||
|
||||
def load_kinematics(toolhead, config):
|
||||
return WinchKinematics(toolhead, config)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue