Adjust min & max temperatures

This commit is contained in:
David Ramiro 2018-12-31 20:38:15 +01:00
parent ac22e9fbd5
commit d8733e1bed
No known key found for this signature in database
GPG Key ID: 5B042737EBEEB736
1 changed files with 5 additions and 5 deletions

View File

@ -350,12 +350,12 @@
// 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 HEATER_0_MAXTEMP 255
#define HEATER_0_MAXTEMP 260
#define HEATER_1_MAXTEMP 275
#define HEATER_2_MAXTEMP 275
#define HEATER_3_MAXTEMP 275
#define HEATER_4_MAXTEMP 275
#define BED_MAXTEMP 110
#define BED_MAXTEMP 120
//===========================================================================
//============================= PID Settings ================================
@ -460,7 +460,7 @@
* *** IT IS HIGHLY RECOMMENDED TO LEAVE THIS OPTION ENABLED! ***
*/
#define PREVENT_COLD_EXTRUSION
#define EXTRUDE_MINTEMP 180
#define EXTRUDE_MINTEMP 170
/**
* Prevent a single extrusion longer than EXTRUDE_MAXLENGTH.
@ -892,8 +892,8 @@
#define X_MIN_POS -5
#define Y_MIN_POS 0
#define Z_MIN_POS 0
#define X_MAX_POS X_BED_SIZE
#define Y_MAX_POS Y_BED_SIZE
#define X_MAX_POS 220
#define Y_MAX_POS 220
#define Z_MAX_POS 205
/**