diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-04-24 23:15:18 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-05-05 11:08:12 -0400 |
commit | 95919d12563abc510f5b0f7f6a0466b785a9168a (patch) | |
tree | bca3069c7f2f7736165f491f5b46f66bf3c7360a | |
parent | 203568b9092d5abb09baf1d93b4dbcd558f27072 (diff) | |
download | kutter-95919d12563abc510f5b0f7f6a0466b785a9168a.tar.gz kutter-95919d12563abc510f5b0f7f6a0466b785a9168a.tar.xz kutter-95919d12563abc510f5b0f7f6a0466b785a9168a.zip |
screws_tilt_adjust: Use new GCodeCommand wrappers
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | klippy/extras/screws_tilt_adjust.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/screws_tilt_adjust.py b/klippy/extras/screws_tilt_adjust.py index 519794ba..caec9105 100644 --- a/klippy/extras/screws_tilt_adjust.py +++ b/klippy/extras/screws_tilt_adjust.py @@ -50,8 +50,8 @@ class ScrewsTiltAdjust: "screws by calculating the number " \ "of turns to level it." - def cmd_SCREWS_TILT_CALCULATE(self, params): - self.probe_helper.start_probe(params) + def cmd_SCREWS_TILT_CALCULATE(self, gcmd): + self.probe_helper.start_probe(gcmd) def probe_finalize(self, offsets, positions): # Factors used for CW-M3, CCW-M3, CW-M4, CCW-M4, CW-M5 and CCW-M5 |