diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-04-25 13:06:51 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-04-25 14:26:28 -0400 |
commit | d858498a53fe98ed705595b8639b50b219d6262f (patch) | |
tree | 40e1a8e8d9da4f61ad275a67226bd143d2ab0050 /klippy/extras/pid_calibrate.py | |
parent | 44f868a802852317f68886c47255b0fb90fb7ae2 (diff) | |
download | kutter-d858498a53fe98ed705595b8639b50b219d6262f.tar.gz kutter-d858498a53fe98ed705595b8639b50b219d6262f.tar.xz kutter-d858498a53fe98ed705595b8639b50b219d6262f.zip |
heater: Move M105 command handling from gcode.py to heater.py
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/pid_calibrate.py')
-rw-r--r-- | klippy/extras/pid_calibrate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/pid_calibrate.py b/klippy/extras/pid_calibrate.py index 689084e9..49ae3bb4 100644 --- a/klippy/extras/pid_calibrate.py +++ b/klippy/extras/pid_calibrate.py @@ -31,7 +31,7 @@ class PIDCalibrate: except self.printer.command_error as e: heater.set_control(old_control) raise - self.gcode.wait_for_temperature(heater) + pheater.wait_for_temperature(heater) heater.set_control(old_control) if write_file: calibrate.write_file('/tmp/heattest.txt') |