aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2016-09-15 12:16:08 -0400
committerKevin O'Connor <kevin@koconnor.net>2016-09-15 12:16:08 -0400
commit94272ed07211350dd7c76fd20aeeec28eac35c55 (patch)
treebd0ac44479dbff4a45fc127387f673ec927d4912 /klippy
parent7b2f6f89f0189b30d1806549f9379356effdb522 (diff)
downloadkutter-94272ed07211350dd7c76fd20aeeec28eac35c55.tar.gz
kutter-94272ed07211350dd7c76fd20aeeec28eac35c55.tar.xz
kutter-94272ed07211350dd7c76fd20aeeec28eac35c55.zip
heater: Add "ATC Semitec 104GT-2" thermistor definition
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-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