diff --git a/klippy/extras/heaters.py b/klippy/extras/heaters.py index edd4dd2..cd113af 100644 --- a/klippy/extras/heaters.py +++ b/klippy/extras/heaters.py @@ -241,7 +241,7 @@ def temperature_update(self, read_time, temp, target_temp): # temp, read_time, temp_diff, temp_deriv, temp_err, temp_integ, co) bounded_co = max(0., min(self.heater_max_power, co)) if self.heater.name == "chamber" and heater_bed.heater_bed_state != 2 and heater_bed.is_heater_bed == 1: - self.heater.set_pwm(read_time, 0.) + self.heater.set_pwm(read_time, bounded_co/2.0) else: self.heater.set_pwm(read_time, bounded_co) # Store state for next measurement