mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-23 22:54:10 -06:00
fan: Add a set_shutdown_speed() method
Add a set_shutdown_speed() method so that the heater_fan code does not need to peek into the fan object's internal members. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
6d03dee104
commit
8f4f5da11c
2 changed files with 3 additions and 1 deletions
|
@ -15,7 +15,7 @@ class PrinterHeaterFan:
|
|||
self.fan = fan.PrinterFan(config)
|
||||
self.mcu = self.fan.mcu_fan.get_mcu()
|
||||
self.fan_speed = config.getfloat("fan_speed", 1., minval=0., maxval=1.)
|
||||
self.fan.mcu_fan.setup_start_value(0., self.fan.max_power)
|
||||
self.fan.set_shutdown_speed(1.)
|
||||
def printer_state(self, state):
|
||||
if state == 'ready':
|
||||
pheater = self.printer.lookup_object('heater')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue