diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-11-01 11:49:55 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-11-10 18:52:55 -0500 |
commit | 596cd217516790e805fed7102b17ebbc7c14feb7 (patch) | |
tree | 4d42d9d4086bb478a67401f019863dd803e4ed10 /klippy/extras/temperature_sensors.cfg | |
parent | 59314d99e0e2b12720f144afff7c127b11103556 (diff) | |
download | kutter-596cd217516790e805fed7102b17ebbc7c14feb7.tar.gz kutter-596cd217516790e805fed7102b17ebbc7c14feb7.tar.xz kutter-596cd217516790e805fed7102b17ebbc7c14feb7.zip |
temperature_sensors: Define default sensors in new config file
Move the default list of sensor modules from heaters.py to a new
temperature_sensors.cfg config file.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/temperature_sensors.cfg')
-rw-r--r-- | klippy/extras/temperature_sensors.cfg | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/klippy/extras/temperature_sensors.cfg b/klippy/extras/temperature_sensors.cfg new file mode 100644 index 00000000..db828378 --- /dev/null +++ b/klippy/extras/temperature_sensors.cfg @@ -0,0 +1,31 @@ +# This file loads the default temperature sensors. + +# Load "PT1000", "PT100 INA826", "AD595", "AD597", "AD8494", "AD8495", +# "AD8496", and "AD8497" sensors +[adc_temperature] + +# Load "BME280" sensor +[bme280] + +# Load "DS18B20" sensor +[ds18b20] + +# Load "SI7013", "SI7020", "SI7021", "SHT21", and "HTU21D" sensors +[htu21d] + +# Load "LM75" sensor +[lm75] + +# Load "MAX6675", "MAX31855", "MAX31856", and "MAX31865" sensors +[spi_temperature] + +# Load "temperature_host" sensor +[temperature_host] + +# Load "temperature_mcu" sensor +[temperature_mcu] + +# Load "EPCOS 100K B57560G104F", "ATC Semitec 104GT-2", "NTC 100K beta 3950", +# "Honeywell 100K 135-104LAG-J01", "NTC 100K MGB18-104F39050L32", +# "SliceEngineering 450", and "TDK NTCG104LH104JT1" sensors +[thermistor] |