rotary_delta: Fix typo in get_status() homed_axes

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2021-03-29 23:05:34 -04:00
parent 58a0eb76c5
commit 20245d2e46
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ class RotaryDeltaKinematics:
self.limit_xy2 = limit_xy2
def get_status(self, eventtime):
return {
'homed_axes': '' if self.need_home else 'XYZ',
'homed_axes': '' if self.need_home else 'xyz',
'axis_minimum': self.axes_min,
'axis_maximum': self.axes_max,
}