diff options
author | Sophie Hirn <sophie.hirn@wyvernscale.com> | 2021-07-20 16:19:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 10:19:59 -0400 |
commit | de57ce3a99805502f61ff000668cd5e7b5b93aa1 (patch) | |
tree | 7619587b60c47abef972cee0fac33f1700cab11f /docs/Config_Reference.md | |
parent | dafb74e3aba707db364ed773bb2135084ac0fffa (diff) | |
download | kutter-de57ce3a99805502f61ff000668cd5e7b5b93aa1.tar.gz kutter-de57ce3a99805502f61ff000668cd5e7b5b93aa1.tar.xz kutter-de57ce3a99805502f61ff000668cd5e7b5b93aa1.zip |
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>
Diffstat (limited to 'docs/Config_Reference.md')
-rw-r--r-- | docs/Config_Reference.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index f271d8d5..e876add7 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -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] |