ExtUI: Fix fan wrapping around from 0 to 100 (#12987)

2.0.x
Marcio Teixeira 6 years ago committed by Scott Lahteine
parent dbe4126e07
commit 54fdf57b8c

@ -572,7 +572,7 @@ namespace ExtUI {
void setTargetFan_percent(const float value, const fan_t fan) {
if (fan < FAN_COUNT)
thermalManager.set_fan_speed(fan - FAN0, map(value, 0, 100, 0, 255));
thermalManager.set_fan_speed(fan - FAN0, map(clamp(value, 0, 100), 0, 100, 0, 255));
}
void setFeedrate_percent(const float value) {

Loading…
Cancel
Save