From 6fa8fd15e235e2461c82aebbc28985999fda4268 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Tue, 13 Dec 2016 02:06:16 -0800 Subject: [PATCH] Add negative temperatures for Thermistor 1 Changes from #5485 by @AndKe --- Marlin/thermistortables.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Marlin/thermistortables.h b/Marlin/thermistortables.h index 7980b7207..fee443a73 100644 --- a/Marlin/thermistortables.h +++ b/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