From 94272ed07211350dd7c76fd20aeeec28eac35c55 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 15 Sep 2016 12:16:08 -0400 Subject: [PATCH] heater: Add "ATC Semitec 104GT-2" thermistor definition Signed-off-by: Kevin O'Connor --- klippy/heater.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/klippy/heater.py b/klippy/heater.py index 78189e3a..c66b251e 100644 --- a/klippy/heater.py +++ b/klippy/heater.py @@ -8,7 +8,9 @@ import math, logging, threading # Mapping from name to Steinhart-Hart coefficients Thermistors = { "EPCOS 100K B57560G104F": ( - 0.000722136308968056, 0.000216766566488498, 8.92935804531095e-08) + 0.000722136308968056, 0.000216766566488498, 8.92935804531095e-08), + "ATC Semitec 104GT-2": ( + 0.000809651054275124, 0.000211636030735685, 7.07420883993973e-08), } SAMPLE_TIME = 0.001