Add negative temperatures for Thermistor 1

Changes from #5485 by @AndKe
This commit is contained in:
Scott Lahteine 2016-12-13 02:06:16 -08:00 committed by GitHub
parent 6080ac566a
commit 6fa8fd15e2

View File

@ -92,7 +92,10 @@ const short temptable_1[][2] PROGMEM = {
{ 993 * OVERSAMPLENR, 15 }, { 993 * OVERSAMPLENR, 15 },
{ 999 * OVERSAMPLENR, 10 }, { 999 * OVERSAMPLENR, 10 },
{ 1004 * OVERSAMPLENR, 5 }, { 1004 * OVERSAMPLENR, 5 },
{ 1008 * OVERSAMPLENR, 0 } // safety { 1008 * OVERSAMPLENR, 0 },
{ 1012 * OVERSAMPLENR, -5 },
{ 1016 * OVERSAMPLENR, -10 },
{ 1020 * OVERSAMPLENR, -15 }
}; };
#endif #endif