diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-07-03 23:23:24 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-07-05 21:04:04 -0400 |
commit | 3a57608642f87de7c2d53b1642d21d057767c4a3 (patch) | |
tree | bba2370e1a081a228963ee520d3f551d1fe1fca4 /klippy/extras/temperature_fan.py | |
parent | 4bdc11a8b3843b73079a2c8dfc8d8c0928c29662 (diff) | |
download | kutter-3a57608642f87de7c2d53b1642d21d057767c4a3.tar.gz kutter-3a57608642f87de7c2d53b1642d21d057767c4a3.tar.xz kutter-3a57608642f87de7c2d53b1642d21d057767c4a3.zip |
fan: Separate out the part cooling fan code from the generic fan code
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/temperature_fan.py')
-rw-r--r-- | klippy/extras/temperature_fan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/temperature_fan.py b/klippy/extras/temperature_fan.py index 3a568113..8309f096 100644 --- a/klippy/extras/temperature_fan.py +++ b/klippy/extras/temperature_fan.py @@ -1,6 +1,6 @@ # Support fans that are enabled when temperature exceeds a set threshold # -# Copyright (C) 2016-2018 Kevin O'Connor <kevin@koconnor.net> +# Copyright (C) 2016-2020 Kevin O'Connor <kevin@koconnor.net> # # This file may be distributed under the terms of the GNU GPLv3 license. from . import fan @@ -14,7 +14,7 @@ class TemperatureFan: def __init__(self, config): self.name = config.get_name().split()[1] self.printer = config.get_printer() - self.fan = fan.PrinterFan(config, default_shutdown_speed=1.) + self.fan = fan.Fan(config, default_shutdown_speed=1.) self.min_temp = config.getfloat('min_temp', minval=KELVIN_TO_CELSIUS) self.max_temp = config.getfloat('max_temp', above=self.min_temp) pheaters = self.printer.load_object(config, 'heaters') |