Clean up some temp config
This commit is contained in:
		@@ -408,37 +408,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 10  // (seconds)
 | 
			
		||||
#define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
 | 
			
		||||
#define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
 | 
			
		||||
#define TEMP_RESIDENCY_TIME     10  // (seconds) Time to wait for hotend to "settle" in M109
 | 
			
		||||
#define TEMP_WINDOW              1  // (°C) Temperature proximity for the "temperature reached" timer
 | 
			
		||||
#define TEMP_HYSTERESIS          3  // (°C) Temperature proximity considered "close enough" to the target
 | 
			
		||||
 | 
			
		||||
// 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.
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
// 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
 | 
			
		||||
// 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
 | 
			
		||||
 | 
			
		||||
// 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.
 | 
			
		||||
// 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 275
 | 
			
		||||
#define HEATER_1_MAXTEMP 275
 | 
			
		||||
#define HEATER_2_MAXTEMP 275
 | 
			
		||||
#define HEATER_3_MAXTEMP 275
 | 
			
		||||
#define HEATER_4_MAXTEMP 275
 | 
			
		||||
#define HEATER_5_MAXTEMP 275
 | 
			
		||||
#define BED_MAXTEMP 150
 | 
			
		||||
#define BED_MAXTEMP      150
 | 
			
		||||
 | 
			
		||||
//===========================================================================
 | 
			
		||||
//============================= PID Settings ================================
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user