Browse Source

Add negative temperatures for Thermistor 1

Changes from #5485 by @AndKe
pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
6fa8fd15e2
  1. 5
      Marlin/thermistortables.h

5
Marlin/thermistortables.h

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

Loading…
Cancel
Save