aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/heater.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/heater.py')
-rw-r--r--klippy/heater.py4
1 files changed, 3 insertions, 1 deletions
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