mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-08 06:24:03 -06:00
controller_fan: Add "stepper" config option (#4447)
Allows contoller_fan sections to monitor only certain steppers instead of all of them, similar to how heaters are currently handled. Signed-off-by: Sophie Hirn <sophie.hirn@wyvernscale.com>
This commit is contained in:
parent
dafb74e3ab
commit
de57ce3a99
3 changed files with 25 additions and 7 deletions
|
@ -2374,7 +2374,7 @@ a shutdown_speed equal to max_power.
|
|||
|
||||
Controller cooling fan (one may define any number of sections with a
|
||||
"controller_fan" prefix). A "controller fan" is a fan that will be
|
||||
enabled whenever its associated heater or any configured stepper
|
||||
enabled whenever its associated heater or its associated stepper
|
||||
driver is active. The fan will stop whenever an idle_timeout is
|
||||
reached to ensure no overheating will occur after deactivating a
|
||||
watched component.
|
||||
|
@ -2405,10 +2405,12 @@ watched component.
|
|||
# will be set to when a heater or stepper driver was active and
|
||||
# before the idle_timeout is reached. The default is fan_speed.
|
||||
#heater:
|
||||
# Name of the config section defining the heater that this fan is
|
||||
# associated with. If a comma separated list of heater names is
|
||||
# provided here, then the fan will be enabled when any of the given
|
||||
# heaters are enabled. The default is "extruder".
|
||||
#stepper:
|
||||
# Name of the config section defining the heater/stepper that this fan
|
||||
# is associated with. If a comma separated list of heater/stepper names
|
||||
# is provided here, then the fan will be enabled when any of the given
|
||||
# heaters/steppers are enabled. The default heater is "extruder", the
|
||||
# default stepper is all of them.
|
||||
```
|
||||
|
||||
## [temperature_fan]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue