diff options
author | Al <aleph@al3ph.org> | 2020-12-03 17:35:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 12:35:37 -0500 |
commit | b911db4c0de10245fd008a6a236d6af23b93e8fe (patch) | |
tree | e961be2b455814699810d5306203a6bcd7608a49 /klippy/extras/heaters.py | |
parent | a1ae54876662e097094f4434a69eca79cb5af9ae (diff) | |
download | kutter-b911db4c0de10245fd008a6a236d6af23b93e8fe.tar.gz kutter-b911db4c0de10245fd008a6a236d6af23b93e8fe.tar.xz kutter-b911db4c0de10245fd008a6a236d6af23b93e8fe.zip |
rpi_temperature: New module to monitor RPi temperature (#3587)
Module to monitor RPi cpu temperature
Signed-off-by: Al Crate <aleph@al3ph.org>
Diffstat (limited to 'klippy/extras/heaters.py')
-rw-r--r-- | klippy/extras/heaters.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/heaters.py b/klippy/extras/heaters.py index 59172090..d549a61d 100644 --- a/klippy/extras/heaters.py +++ b/klippy/extras/heaters.py @@ -263,7 +263,7 @@ class PrinterHeaters: return self.heaters[heater_name] def setup_sensor(self, config): modules = ["thermistor", "adc_temperature", "spi_temperature", - "bme280", "htu21d", "lm75"] + "bme280", "htu21d", "lm75", "rpi_temperature"] for module_name in modules: self.printer.load_object(config, module_name) sensor_type = config.get('sensor_type') |