Browse Source
Extend Heater Overshoot Options (#21273)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
vanilla_fb_2.0.x
Keith Bennett
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
0 deletions
-
Marlin/Configuration.h
|
|
@ -476,6 +476,15 @@ |
|
|
|
#define BED_MAXTEMP 150 |
|
|
|
#define CHAMBER_MAXTEMP 60 |
|
|
|
|
|
|
|
/**
|
|
|
|
* Thermal Overshoot |
|
|
|
* During heatup (and printing) the temperature can often "overshoot" the target by many degrees |
|
|
|
* (especially before PID tuning). Setting the target temperature too close to MAXTEMP guarantees |
|
|
|
* a MAXTEMP shutdown! Use these values to forbid temperatures being set too close to MAXTEMP. |
|
|
|
*/ |
|
|
|
#define HOTEND_OVERSHOOT 15 // (°C) Forbid temperatures over MAXTEMP - OVERSHOOT
|
|
|
|
#define BED_OVERSHOOT 10 // (°C) Forbid temperatures over MAXTEMP - OVERSHOOT
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//============================= PID Settings ================================
|
|
|
|
//===========================================================================
|
|
|
|