diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-12-16 19:21:37 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-12-16 19:21:37 -0500 |
commit | 0e2d1a190e2f26197a4ebc3f5eaaa87c5b8d71ab (patch) | |
tree | 92ab48881e1b7ee5670aecf6cdb2f73161b67319 /klippy/extras/pid_calibrate.py | |
parent | 665323eb29c7794776ce64a17786032690ef3a2a (diff) | |
download | kutter-0e2d1a190e2f26197a4ebc3f5eaaa87c5b8d71ab.tar.gz kutter-0e2d1a190e2f26197a4ebc3f5eaaa87c5b8d71ab.tar.xz kutter-0e2d1a190e2f26197a4ebc3f5eaaa87c5b8d71ab.zip |
gcode: Rename bg_temp() to wait_for_temperature()
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 9c9dc0a4..b7201926 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.bg_temp(heater) + self.gcode.wait_for_temperature(heater) heater.set_control(old_control) if write_file: calibrate.write_file('/tmp/heattest.txt') |