mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-18 20:28: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
|
@ -150,6 +150,9 @@ class DeltaKinematics:
|
|||
self._check_motor_enable(print_time)
|
||||
for rail in self.rails:
|
||||
rail.step_itersolve(move.cmove)
|
||||
def get_status(self):
|
||||
return {'homed_axes': '' if self.need_home else 'XYZ'}
|
||||
|
||||
# Helper function for DELTA_CALIBRATE script
|
||||
def get_calibrate_params(self):
|
||||
out = { 'radius': self.radius }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue