Browse Source

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

pull/1/head
Marcio Teixeira 6 years ago
committed by Scott Lahteine
parent
commit
54fdf57b8c
  1. 2
      Marlin/src/lcd/extensible_ui/ui_api.cpp

2
Marlin/src/lcd/extensible_ui/ui_api.cpp

@ -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