summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormidopple <mdoppler@gmx.at>2012-06-29 19:48:53 +0200
committermidopple <mdoppler@gmx.at>2012-06-29 19:48:53 +0200
commit3dca6f03e1e95458d50aec9ac097b85486b7b4b1 (patch)
tree99d29f50324029450eca492838e6a38d0a05fd78
parentc5cd7f404639fcacf6b3b5bd1693561c96386d93 (diff)
Thermistortable 7 without thermistor shows 5 C, add an safety point with 0 C
-rw-r--r--Sprinter/thermistortables.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/Sprinter/thermistortables.h b/Sprinter/thermistortables.h
index eccfe88..222c013 100644
--- a/Sprinter/thermistortables.h
+++ b/Sprinter/thermistortables.h
@@ -280,8 +280,8 @@ const short temptable_6[NUMTEMPS_6][2] = {
{49, 220},
{53, 215},
{62, 210},
- {73, 205},
- {72, 200},
+ {71, 205}, //fitted graphically
+ {78, 200}, //fitted graphically
{94, 190},
{102, 185},
{116, 170},
@@ -311,7 +311,7 @@ const short temptable_6[NUMTEMPS_6][2] = {
#endif
#if (THERMISTORHEATER == 7) || (THERMISTORBED == 7) // 100k Honeywell 135-104LAG-J01
-#define NUMTEMPS_7 54
+#define NUMTEMPS_7 55
const short temptable_7[NUMTEMPS_7][2] = {
{46, 270},
{50, 265},
@@ -366,7 +366,9 @@ const short temptable_7[NUMTEMPS_7][2] = {
{989, 20},
{994, 15},
{1001, 10},
- {1005, 5}
+ {1005, 5},
+ {1021, 0} //safety
+
};
#endif
@@ -421,4 +423,4 @@ const short temptable_7[NUMTEMPS_7][2] = {
#error No bed thermistor table specified
#endif
-#endif //THERMISTORTABLES_H_
+#endif //THERMISTORTABLES_H_ \ No newline at end of file