Adjust min & max temperatures
This commit is contained in:
parent
ac22e9fbd5
commit
d8733e1bed
|
@ -350,12 +350,12 @@
|
||||||
// When temperature exceeds max temp, your heater will be switched off.
|
// 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!
|
// 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.
|
// You should use MINTEMP for thermistor short/failure protection.
|
||||||
#define HEATER_0_MAXTEMP 255
|
#define HEATER_0_MAXTEMP 260
|
||||||
#define HEATER_1_MAXTEMP 275
|
#define HEATER_1_MAXTEMP 275
|
||||||
#define HEATER_2_MAXTEMP 275
|
#define HEATER_2_MAXTEMP 275
|
||||||
#define HEATER_3_MAXTEMP 275
|
#define HEATER_3_MAXTEMP 275
|
||||||
#define HEATER_4_MAXTEMP 275
|
#define HEATER_4_MAXTEMP 275
|
||||||
#define BED_MAXTEMP 110
|
#define BED_MAXTEMP 120
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= PID Settings ================================
|
//============================= PID Settings ================================
|
||||||
|
@ -460,7 +460,7 @@
|
||||||
* *** IT IS HIGHLY RECOMMENDED TO LEAVE THIS OPTION ENABLED! ***
|
* *** IT IS HIGHLY RECOMMENDED TO LEAVE THIS OPTION ENABLED! ***
|
||||||
*/
|
*/
|
||||||
#define PREVENT_COLD_EXTRUSION
|
#define PREVENT_COLD_EXTRUSION
|
||||||
#define EXTRUDE_MINTEMP 180
|
#define EXTRUDE_MINTEMP 170
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prevent a single extrusion longer than EXTRUDE_MAXLENGTH.
|
* Prevent a single extrusion longer than EXTRUDE_MAXLENGTH.
|
||||||
|
@ -892,8 +892,8 @@
|
||||||
#define X_MIN_POS -5
|
#define X_MIN_POS -5
|
||||||
#define Y_MIN_POS 0
|
#define Y_MIN_POS 0
|
||||||
#define Z_MIN_POS 0
|
#define Z_MIN_POS 0
|
||||||
#define X_MAX_POS X_BED_SIZE
|
#define X_MAX_POS 220
|
||||||
#define Y_MAX_POS Y_BED_SIZE
|
#define Y_MAX_POS 220
|
||||||
#define Z_MAX_POS 205
|
#define Z_MAX_POS 205
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue