diff options
author | Douglas Hammond <wizhippo@gmail.com> | 2019-03-28 14:07:40 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-03-28 14:07:40 -0400 |
commit | c105adc80bbcdc7daf5c86ec7ec49511a36a3cbd (patch) | |
tree | 17c16087d03869c589dec51d02b4c8faf7474c7d /config/example-extras.cfg | |
parent | 5913170b6ba08c87f63282577b32df0e91c43967 (diff) | |
download | kutter-c105adc80bbcdc7daf5c86ec7ec49511a36a3cbd.tar.gz kutter-c105adc80bbcdc7daf5c86ec7ec49511a36a3cbd.tar.xz kutter-c105adc80bbcdc7daf5c86ec7ec49511a36a3cbd.zip |
temperature_fan: Fix. Temperature fan min speed should be used (#1405)
Signed-off-by: Douglas Hammond <wizhippo@gmail.com>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r-- | config/example-extras.cfg | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index e72e4645..2d9387ee 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -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 |