Browse Source

Add negative temperatures for Thermistor 1

Changes from #5485 by @AndKe
Scott Lahteine 7 years ago
parent
commit
6fa8fd15e2
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      Marlin/thermistortables.h

+ 4
- 1
Marlin/thermistortables.h View File

@@ -92,7 +92,10 @@ const short temptable_1[][2] PROGMEM = {
92 92
   {  993 * OVERSAMPLENR,  15 },
93 93
   {  999 * OVERSAMPLENR,  10 },
94 94
   { 1004 * OVERSAMPLENR,   5 },
95
-  { 1008 * OVERSAMPLENR,   0 } // safety
95
+  { 1008 * OVERSAMPLENR,   0 },
96
+  { 1012 * OVERSAMPLENR,  -5 },
97
+  { 1016 * OVERSAMPLENR, -10 },
98
+  { 1020 * OVERSAMPLENR, -15 }
96 99
 };
97 100
 #endif
98 101
 

Loading…
Cancel
Save