- Set MINTEMP to 1 degree celsius

- Bump Verison to 1.1.9
- Bump distribution date
- Add CodeValueInt function to prepare Laser support
This commit is contained in:
Knutwurst
2021-01-13 15:36:03 +01:00
parent 57fb9a40a0
commit 5d1444295b
4 changed files with 28 additions and 22 deletions

View File

@@ -595,28 +595,28 @@
// 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 HEATER_6_MINTEMP 5
#define HEATER_7_MINTEMP 5
#define BED_MINTEMP 5
#define HEATER_0_MINTEMP 1
#define HEATER_1_MINTEMP 1
#define HEATER_2_MINTEMP 1
#define HEATER_3_MINTEMP 1
#define HEATER_4_MINTEMP 1
#define HEATER_5_MINTEMP 1
#define HEATER_6_MINTEMP 1
#define HEATER_7_MINTEMP 1
#define BED_MINTEMP 1
// 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 400
#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 HEATER_6_MAXTEMP 275
#define HEATER_7_MAXTEMP 275
#define BED_MAXTEMP 200
#define HEATER_1_MAXTEMP 400
#define HEATER_2_MAXTEMP 400
#define HEATER_3_MAXTEMP 400
#define HEATER_4_MAXTEMP 400
#define HEATER_5_MAXTEMP 400
#define HEATER_6_MAXTEMP 400
#define HEATER_7_MAXTEMP 400
#define BED_MAXTEMP 180
//===========================================================================
//============================= PID Settings ================================