From 1f11c171c749f0dd1eccc2bf65a425b3dbfbf7ec Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 30 Apr 2018 16:05:32 -0400 Subject: [PATCH] thermistor: Add Honeywell 100K and MGB18 thermistor definitions Add two additional thermistors (as suggested by Tim Miller). Signed-off-by: Kevin O'Connor --- config/example.cfg | 3 ++- klippy/extras/thermistor.py | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/config/example.cfg b/config/example.cfg index f4c7029b..5bf94895 100644 --- a/config/example.cfg +++ b/config/example.cfg @@ -146,7 +146,8 @@ heater_pin: ar10 # periods) to the heater. The default is 1.0. sensor_type: EPCOS 100K B57560G104F # Type of sensor - this may be "EPCOS 100K B57560G104F", "ATC -# Semitec 104GT-2", "NTC 100K beta 3950", "AD595", or "PT100 +# Semitec 104GT-2", "NTC 100K beta 3950", "Honeywell 100K +# 135-104LAG-J01", "NTC 100K MGB18-104F39050L32", "AD595", or "PT100 # INA826". Additional sensor types may be available - see the # example-extras.cfg file for details. This parameter must be # provided. diff --git a/klippy/extras/thermistor.py b/klippy/extras/thermistor.py index a7e6c5d7..3f96066d 100644 --- a/klippy/extras/thermistor.py +++ b/klippy/extras/thermistor.py @@ -113,6 +113,8 @@ Sensors = { 't1': 20., 'r1': 126800., 't2': 150., 'r2': 1360., 't3': 300., 'r3': 80.65 }, "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. }, } def load_config(config):