Browse Source

Fix Hotend Idle Timeout trigger (#18657)

Keith Bennett 5 years ago
parent
commit
246eac0c82
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/feature/hotend_idle.cpp

+ 1
- 1
Marlin/src/feature/hotend_idle.cpp View File

@@ -43,7 +43,7 @@ millis_t HotendIdleProtection::next_protect_ms = 0;
43 43
 void HotendIdleProtection::check_hotends(const millis_t &ms) {
44 44
   bool do_prot = false;
45 45
   HOTEND_LOOP() {
46
-    if (thermalManager.degHotendNear(e, HOTEND_IDLE_MIN_TRIGGER)) {
46
+    if (thermalManager.degHotend(active_extruder) >= HOTEND_IDLE_MIN_TRIGGER) {
47 47
       do_prot = true; break;
48 48
     }
49 49
   }

Loading…
Cancel
Save