aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras
diff options
context:
space:
mode:
authorStefan Dej <meteyou@gmail.com>2023-07-19 22:31:33 +0200
committerKevinOConnor <kevin@koconnor.net>2023-08-01 12:14:15 -0400
commitea330717cde4c05e8952ae3fbb4bec2f11e7672f (patch)
treefd0833650aa640d2f7a132145b38eb0d93c92cf9 /klippy/extras
parentfee385dad84acb1d6c763f620480cf67eab7cad7 (diff)
downloadkutter-ea330717cde4c05e8952ae3fbb4bec2f11e7672f.tar.gz
kutter-ea330717cde4c05e8952ae3fbb4bec2f11e7672f.tar.xz
kutter-ea330717cde4c05e8952ae3fbb4bec2f11e7672f.zip
screws_tilt_adjust: add max_deviation to report status
Signed-off-by: Stefan Dej <meteyou@gmail.com>
Diffstat (limited to 'klippy/extras')
-rw-r--r--klippy/extras/screws_tilt_adjust.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/extras/screws_tilt_adjust.py b/klippy/extras/screws_tilt_adjust.py
index 423c4a09..521744af 100644
--- a/klippy/extras/screws_tilt_adjust.py
+++ b/klippy/extras/screws_tilt_adjust.py
@@ -61,6 +61,7 @@ class ScrewsTiltAdjust:
def get_status(self, eventtime):
return {'error': self.max_diff_error,
+ 'max_deviation': self.max_diff,
'results': self.results}
def probe_finalize(self, offsets, positions):