diff options
author | Lucio Tarantino <lucio.tarantino@gmail.com> | 2020-05-04 00:47:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 18:47:24 -0400 |
commit | dac42efbd9236cfdeea6baefe65bbd3ab46abcdb (patch) | |
tree | 06823885e06d40b914af9f9165f453e6824c7fda /klippy/extras/heaters.py | |
parent | f8649b4ba9347bde03191bb0820ab23142a0b429 (diff) | |
download | kutter-dac42efbd9236cfdeea6baefe65bbd3ab46abcdb.tar.gz kutter-dac42efbd9236cfdeea6baefe65bbd3ab46abcdb.tar.xz kutter-dac42efbd9236cfdeea6baefe65bbd3ab46abcdb.zip |
htu21d: Support for HTI21D family sensor on I2C bus (#2803)
Signed-off-by: Lucio Tarantino <lucio.tarantino@gmail.com>
Diffstat (limited to 'klippy/extras/heaters.py')
-rw-r--r-- | klippy/extras/heaters.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/extras/heaters.py b/klippy/extras/heaters.py index 29fb5d6e..cdb5c186 100644 --- a/klippy/extras/heaters.py +++ b/klippy/extras/heaters.py @@ -265,6 +265,7 @@ class PrinterHeaters: self.printer.try_load_module(config, "adc_temperature") self.printer.try_load_module(config, "spi_temperature") self.printer.try_load_module(config, "bme280") + self.printer.try_load_module(config, "htu21d") sensor_type = config.get('sensor_type') if sensor_type not in self.sensor_factories: raise self.printer.config_error( |