temperature_fan: Fix. Temperature fan min speed should be used (#1405)

Signed-off-by: Douglas Hammond <wizhippo@gmail.com>
This commit is contained in:
Douglas Hammond 2019-03-28 14:07:40 -04:00 committed by KevinOConnor
parent 5913170b6b
commit c105adc80b
3 changed files with 27 additions and 15 deletions

View file

@ -626,20 +626,20 @@
# The default is 1.0.
#min_speed: 0.3
# The minimum fan speed (expressed as a value from 0.0 to 1.0) that
# the fan will be set to when the sensor temperature is the set
# value. The default is 0.3.
# the fan will be set to for PID temperature fans.
# The default is 0.3.
#control: watermark
# Control algorithm (either watermark or pid). This parameter must
# be provided.
#pid_Kp: 40
# Kp is the "proportional" constant for the pid. This parameter must
# be provided for PID heaters.
# be provided for PID temperature fans.
#pid_Ki: 0.2
# Ki is the "integral" constant for the pid. This parameter must be
# provided for PID heaters.
# provided for PID temperature fans.
#pid_Kd: 0.1
# Kd is the "derivative" constant for the pid. This parameter must
# be provided for PID heaters.
# be provided for PID temperature fans.
#pid_deriv_time: 2.0
# A time value (in seconds) over which the derivative in the pid
# will be smoothed to reduce the impact of measurement noise. The