Deploying to gh-pages from @ Klipper3d/klipper@4a8a76ead8 🚀

This commit is contained in:
KevinOConnor
2022-04-11 15:48:05 +00:00
parent b189d475df
commit af3150abd2
10 changed files with 16 additions and 5 deletions

View File

@@ -5729,14 +5729,25 @@ information.</p>
#sensor_type:
#sensor_pin:
#control:
#pid_Kp:
#pid_Ki:
#pid_Kd:
#pid_deriv_time:
#max_delta:
#min_temp:
#max_temp:
# See the &quot;extruder&quot; section for a description of the above parameters.
#pid_Kp:
#pid_Ki:
#pid_Kd:
# The proportional (pid_Kp), integral (pid_Ki), and derivative
# (pid_Kd) settings for the PID feedback control system. Klipper
# evaluates the PID settings with the following general formula:
# fan_pwm = max_power - (Kp*e + Ki*integral(e) - Kd*derivative(e)) / 255
# Where &quot;e&quot; is &quot;target_temperature - measured_temperature&quot; and
# &quot;fan_pwm&quot; is the requested fan rate with 0.0 being full off and
# 1.0 being full on. The pid_Kp, pid_Ki, and pid_Kd parameters must
# be provided when the PID control algorithm is enabled.
#pid_deriv_time: 2.0
# A time value (in seconds) over which temperature measurements will
# be smoothed when using the PID control algorithm. This may reduce
# the impact of measurement noise. The default is 2 seconds.
#target_temp: 40.0
# A temperature (in Celsius) that will be the target temperature.
# The default is 40 degrees.