mirror of https://github.com/Desuuuu/klipper.git
heater: Add "ATC Semitec 104GT-2" thermistor definition
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
7b2f6f89f0
commit
94272ed072
|
@ -8,7 +8,9 @@ import math, logging, threading
|
||||||
# Mapping from name to Steinhart-Hart coefficients
|
# Mapping from name to Steinhart-Hart coefficients
|
||||||
Thermistors = {
|
Thermistors = {
|
||||||
"EPCOS 100K B57560G104F": (
|
"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
|
SAMPLE_TIME = 0.001
|
||||||
|
|
Loading…
Reference in New Issue