Skip to content
Snippets Groups Projects
Commit c9739288 authored by Christos Gentsos's avatar Christos Gentsos
Browse files

PID: tune PID to respond faster, set limits for the new fan driver

parent 2d9ffa22
Branches
No related merge requests found
......@@ -10,12 +10,12 @@
// Kd = 3.0*0.10*4.0/40 = 0.03
const float pid_kp = 0.05;
const float pid_ki = 0.03;
const float pid_kp = 0.08;
const float pid_ki = 0.04;
const float pid_kd = 0.035;
const float pid_outMin = 50;
const float pid_outMax = 1000;
const float pid_outMin = 300;
const float pid_outMax = 940;
const float pid_ifMax = 50;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment