aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/heaters.py
diff options
context:
space:
mode:
authorcombolek <4743344+combolek@users.noreply.github.com>2020-07-19 17:18:54 -0700
committerGitHub <noreply@github.com>2020-07-19 20:18:54 -0400
commit3835654116fd77f539bf643bf22c14fbf43d953b (patch)
tree603591ac21b940a6d47a273f91bd8932b250bb8a /klippy/extras/heaters.py
parentb0901daa85d95a4020056a030c6aecb02df22d1e (diff)
downloadkutter-3835654116fd77f539bf643bf22c14fbf43d953b.tar.gz
kutter-3835654116fd77f539bf643bf22c14fbf43d953b.tar.xz
kutter-3835654116fd77f539bf643bf22c14fbf43d953b.zip
lm75: Added support for LM75/LM75A I2C connected temperature sensors (#3101)
Signed-off-by: Boleslaw Ciesielski <combolek@users.noreply.github.com>
Diffstat (limited to 'klippy/extras/heaters.py')
-rw-r--r--klippy/extras/heaters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/heaters.py b/klippy/extras/heaters.py
index e5cb4dbd..e66168c5 100644
--- a/klippy/extras/heaters.py
+++ b/klippy/extras/heaters.py
@@ -261,7 +261,7 @@ class PrinterHeaters:
return self.heaters[heater_name]
def setup_sensor(self, config):
modules = ["thermistor", "adc_temperature", "spi_temperature",
- "bme280", "htu21d"]
+ "bme280", "htu21d", "lm75"]
for module_name in modules:
self.printer.load_object(config, module_name)
sensor_type = config.get('sensor_type')