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