aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--klippy/extras/heater_fan.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/klippy/extras/heater_fan.py b/klippy/extras/heater_fan.py
index 248f6c6b..4cfa5f53 100644
--- a/klippy/extras/heater_fan.py
+++ b/klippy/extras/heater_fan.py
@@ -23,6 +23,8 @@ class PrinterHeaterFan:
for n in self.heater_name.split(',')]
reactor = self.printer.get_reactor()
reactor.register_timer(self.callback, reactor.NOW)
+ def get_status(self, eventtime):
+ return self.fan.get_status(eventtime)
def callback(self, eventtime):
power = 0.
for heater in self.heaters: