blob: 362719685a3ff409a0488a789a3992bf931214bb [file] [log] [blame]
0x01: /* zone ID */
fan2-6: /* PID name */
type: fan /* Type of PID, fan, temp, or margin. */
inputs: /* Sensor names that are inputs for the PID */
fan2
fan6
/* For temp/margin PIDs this is the set-point, ignored otherwise (double) */
set-point: 90.0
pid: /* The PID calculation configuration. */
sampleperiod: 0.1 /* The input sample period. (double) */
p_coefficient: 0.01 /* The proportional coefficient. (double) */
i_coefficient: 0.001 /* The integral coefficient. (double) */
/* The feed-forward offset coefficient. (double) */
ff_off_coefficient: 0.0
/* The feed-forward gain coefficient. (double) */
ff_gain_coefficient: 0.0
i_limit: /* The integral limit clamp, min, max (double) */
min: 0
max: 100
out_limit: /* the PID output clamp, min, max (double) */
min: 0
max: 100
slew_neg: -100 /* The slew negative value. (double) */
slew_pos: 0 /* The slew positive value. (double) */