|
|
@ -396,37 +396,34 @@ |
|
|
|
//#define TEMP_SENSOR_1_AS_REDUNDANT
|
|
|
|
#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10 |
|
|
|
|
|
|
|
// Extruder temperature must be close to target for this long before M109 returns success
|
|
|
|
#define TEMP_RESIDENCY_TIME 16 // (seconds)
|
|
|
|
#define TEMP_HYSTERESIS 12 // (degC) range of +/- temperatures considered "close" to the target one
|
|
|
|
#define TEMP_WINDOW 5 // (degC) Window around target to start the residency timer x degC early.
|
|
|
|
|
|
|
|
// Bed temperature must be close to target for this long before M190 returns success
|
|
|
|
#define TEMP_BED_RESIDENCY_TIME 10 // (seconds)
|
|
|
|
#define TEMP_BED_HYSTERESIS 3 // (degC) range of +/- temperatures considered "close" to the target one
|
|
|
|
#define TEMP_BED_WINDOW 1 // (degC) Window around target to start the residency timer x degC early.
|
|
|
|
|
|
|
|
// The minimal temperature defines the temperature below which the heater will not be enabled It is used
|
|
|
|
// to check that the wiring to the thermistor is not broken.
|
|
|
|
// Otherwise this would lead to the heater being powered on all the time.
|
|
|
|
#define HEATER_0_MINTEMP 5 |
|
|
|
#define HEATER_1_MINTEMP 5 |
|
|
|
#define HEATER_2_MINTEMP 5 |
|
|
|
#define HEATER_3_MINTEMP 5 |
|
|
|
#define HEATER_4_MINTEMP 5 |
|
|
|
#define HEATER_5_MINTEMP 5 |
|
|
|
#define BED_MINTEMP 5 |
|
|
|
|
|
|
|
// When temperature exceeds max temp, your heater will be switched off.
|
|
|
|
// This feature exists to protect your hotend from overheating accidentally, but *NOT* from thermistor short/failure!
|
|
|
|
// You should use MINTEMP for thermistor short/failure protection.
|
|
|
|
#define TEMP_RESIDENCY_TIME 16 // (seconds) Time to wait for hotend to "settle" in M109
|
|
|
|
#define TEMP_WINDOW 5 // (°C) Temperature proximity for the "temperature reached" timer
|
|
|
|
#define TEMP_HYSTERESIS 12 // (°C) Temperature proximity considered "close enough" to the target
|
|
|
|
|
|
|
|
#define TEMP_BED_RESIDENCY_TIME 10 // (seconds) Time to wait for bed to "settle" in M190
|
|
|
|
#define TEMP_BED_WINDOW 1 // (°C) Temperature proximity for the "temperature reached" timer
|
|
|
|
#define TEMP_BED_HYSTERESIS 3 // (°C) Temperature proximity considered "close enough" to the target
|
|
|
|
|
|
|
|
// Below this temperature the heater will be switched off
|
|
|
|
// because it probably indicates a broken thermistor wire.
|
|
|
|
#define HEATER_0_MINTEMP 5 |
|
|
|
#define HEATER_1_MINTEMP 5 |
|
|
|
#define HEATER_2_MINTEMP 5 |
|
|
|
#define HEATER_3_MINTEMP 5 |
|
|
|
#define HEATER_4_MINTEMP 5 |
|
|
|
#define HEATER_5_MINTEMP 5 |
|
|
|
#define BED_MINTEMP 5 |
|
|
|
|
|
|
|
// Above this temperature the heater will be switched off.
|
|
|
|
// This can protect components from overheating, but NOT from shorts and failures.
|
|
|
|
// (Use MINTEMP for thermistor short/failure protection.)
|
|
|
|
#define HEATER_0_MAXTEMP 245 |
|
|
|
#define HEATER_1_MAXTEMP 245 |
|
|
|
#define HEATER_2_MAXTEMP 245 |
|
|
|
#define HEATER_3_MAXTEMP 245 |
|
|
|
#define HEATER_4_MAXTEMP 245 |
|
|
|
#define HEATER_5_MAXTEMP 245 |
|
|
|
#define BED_MAXTEMP 115 |
|
|
|
#define BED_MAXTEMP 115 |
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//============================= PID Settings ================================
|
|
|
|