diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-05-04 14:16:21 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-07-24 11:16:05 -0400 |
commit | eba252d3fd963ae10a51bea644f2b0c9e504e559 (patch) | |
tree | d472e0a01f04adedfe5a47a11e91133cd8166da1 /klippy/heater.py | |
parent | 940db6bd70be981c2002905bbbbb7f41977b79e9 (diff) | |
download | kutter-eba252d3fd963ae10a51bea644f2b0c9e504e559.tar.gz kutter-eba252d3fd963ae10a51bea644f2b0c9e504e559.tar.xz kutter-eba252d3fd963ae10a51bea644f2b0c9e504e559.zip |
thermocouple: Add initial support for common SPI temperature sensing chips
Signed-off-by: Petri Honkala <cruwaller@gmail.com>
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/heater.py')
-rw-r--r-- | klippy/heater.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/heater.py b/klippy/heater.py index 919e1088..ee27f72e 100644 --- a/klippy/heater.py +++ b/klippy/heater.py @@ -243,6 +243,7 @@ class PrinterHeaters: def setup_sensor(self, config): self.printer.try_load_module(config, "thermistor") self.printer.try_load_module(config, "adc_temperature") + self.printer.try_load_module(config, "spi_temperature") sensor_type = config.get('sensor_type') if sensor_type not in self.sensors: raise self.printer.config_error("Unknown temperature sensor '%s'" % ( |