ソースを参照

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

Marcio Teixeira 5年前
コミット
54fdf57b8c
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      Marlin/src/lcd/extensible_ui/ui_api.cpp

+ 1
- 1
Marlin/src/lcd/extensible_ui/ui_api.cpp ファイルの表示

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

読み込み中…
キャンセル
保存