aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/heater_fan.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras/heater_fan.py')
-rw-r--r--klippy/extras/heater_fan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/heater_fan.py b/klippy/extras/heater_fan.py
index 4cfa5f53..337dcc09 100644
--- a/klippy/extras/heater_fan.py
+++ b/klippy/extras/heater_fan.py
@@ -11,7 +11,7 @@ class PrinterHeaterFan:
def __init__(self, config):
self.printer = config.get_printer()
self.printer.register_event_handler("klippy:ready", self.handle_ready)
- self.heater_name = config.get("heater", "extruder0")
+ self.heater_name = config.get("heater", "extruder")
self.heater_temp = config.getfloat("heater_temp", 50.0)
self.heaters = []
self.fan = fan.PrinterFan(config, default_shutdown_speed=1.)