From af981432f0d62e21638a4cbab1c163e0c8440c3a Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 11 Jul 2020 12:50:58 -0400 Subject: [PATCH] thermistor: Add in definition for "SliceEngineering 450" thermistor Signed-off-by: Kevin O'Connor --- config/example.cfg | 6 +++--- klippy/extras/thermistor.py | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/config/example.cfg b/config/example.cfg index b93dda6f..e0f1bebf 100644 --- a/config/example.cfg +++ b/config/example.cfg @@ -159,9 +159,9 @@ heater_pin: ar10 sensor_type: EPCOS 100K B57560G104F # Type of sensor - common thermistors are "EPCOS 100K B57560G104F", # "ATC Semitec 104GT-2", "NTC 100K beta 3950", "Honeywell 100K -# 135-104LAG-J01", and "NTC 100K MGB18-104F39050L32". See the -# example-extras.cfg file for other sensors. This parameter must be -# provided. +# 135-104LAG-J01", "NTC 100K MGB18-104F39050L32", and +# "SliceEngineering 450". See the example-extras.cfg file for other +# sensors. This parameter must be provided. sensor_pin: analog13 # Analog input pin connected to the sensor. This parameter must be # provided. diff --git a/klippy/extras/thermistor.py b/klippy/extras/thermistor.py index ab25c5c5..ac815d99 100644 --- a/klippy/extras/thermistor.py +++ b/klippy/extras/thermistor.py @@ -109,6 +109,9 @@ Sensors = { "ATC Semitec 104GT-2": { 't1': 20., 'r1': 126800., 't2': 150., 'r2': 1360., 't3': 300., 'r3': 80.65 }, + "SliceEngineering 450": { + 't1': 25., 'r1': 500000., 't2': 200., 'r2': 3734., + 't3': 400., 'r3': 240. }, "NTC 100K beta 3950": { 't1': 25., 'r1': 100000., 'beta': 3950. }, "Honeywell 100K 135-104LAG-J01": { 't1': 25., 'r1': 100000., 'beta': 3974.}, "NTC 100K MGB18-104F39050L32": { 't1': 25., 'r1': 100000., 'beta': 4100. },