blob: 3549c8d354f817866fbd8c5cdfbbbecc280a06d5 [file] [log] [blame]
Patrick Venturee6206562018-03-08 15:36:53 -080010x01: /* zone ID */
2 fan2-6: /* PID name */
3 type: fan /* Type of PID, fan, temp, or margin. */
4 inputs: /* Sensor names that are inputs for the PID */
5 fan2
6 fan6
7 /* For temp/margin PIDs this is the set-point, ignored otherwise (float) */
8 set-point: 90.0
9 pid: /* The PID calculation configuration. */
10 sampleperiod: 0.1 /* The input sample period. (float) */
11 p_coefficient: 0.01 /* The proportional coefficient. (float) */
12 i_coefficient: 0.001 /* The integral coefficient. (float) */
13 /* The feed-forward offset coefficient. (float) */
14 ff_off_coefficient: 0.0
15 /* The feed-forward gain coefficient. (float) */
16 ff_gain_coefficient: 0.0
17 i_limit: /* The integral limit clamp, min, max (float) */
18 min: 0
19 max: 100
20 out_limit: /* the PID output clamp, min, max (float) */
21 min: 0
22 max: 100
23 slew_neg: -100 /* The slew negative value. (float) */
24 slew_pos: 0 /* The slew positive value. (float) */