diff options
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 1caffeb7..bd2b29d6 100644 --- a/klippy/extras/pid_calibrate.py +++ b/klippy/extras/pid_calibrate.py @@ -62,7 +62,7 @@ class ControlAutoTune: self.pwm_samples.append((read_time + heater.PWM_DELAY, value)) self.last_pwm = value self.heater.set_pwm(read_time, value) - def adc_callback(self, read_time, temp): + def temperature_callback(self, read_time, temp): self.temp_samples.append((read_time, temp)) if self.heating and temp >= self.heater.target_temp: self.heating = False |