Browse Source

Use MAX_BED_POWER instead of BANG_MAX to heat outside PID_FUNCTIONAL_RANGE (#15431)

pull/1/head
LinFor 5 years ago
committed by Scott Lahteine
parent
commit
98f614ddb1
  1. 2
      Marlin/src/module/temperature.cpp

2
Marlin/src/module/temperature.cpp

@ -943,7 +943,7 @@ void Temperature::min_temp_error(const heater_ind_t heater) {
pid_reset = true;
}
else if (pid_error > PID_FUNCTIONAL_RANGE) {
pid_output = BANG_MAX;
pid_output = MAX_BED_POWER;
pid_reset = true;
}
else {

Loading…
Cancel
Save