Browse Source

Extend Heater Overshoot Options (#21273)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
Keith Bennett 3 years ago
parent
commit
5dc8f5cfab
No account linked to committer's email address
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      Marlin/Configuration.h

+ 9
- 0
Marlin/Configuration.h View File

@@ -476,6 +476,15 @@
476 476
 #define BED_MAXTEMP      150
477 477
 #define CHAMBER_MAXTEMP  60
478 478
 
479
+/**
480
+ * Thermal Overshoot
481
+ * During heatup (and printing) the temperature can often "overshoot" the target by many degrees
482
+ * (especially before PID tuning). Setting the target temperature too close to MAXTEMP guarantees
483
+ * a MAXTEMP shutdown! Use these values to forbid temperatures being set too close to MAXTEMP.
484
+ */
485
+#define HOTEND_OVERSHOOT 15   // (°C) Forbid temperatures over MAXTEMP - OVERSHOOT
486
+#define BED_OVERSHOOT    10   // (°C) Forbid temperatures over MAXTEMP - OVERSHOOT
487
+
479 488
 //===========================================================================
480 489
 //============================= PID Settings ================================
481 490
 //===========================================================================

Loading…
Cancel
Save