PID controller
Applies to: general, robotics, cpp
A PID controller combines proportional, integral, and derivative terms to reduce control error.
u = kp*e + ki*sum_e + kd*de_dt;
See also: proportional-control, integral-control, derivative-control
Applies to: general, robotics, cpp
A PID controller combines proportional, integral, and derivative terms to reduce control error.
u = kp*e + ki*sum_e + kd*de_dt;
See also: proportional-control, integral-control, derivative-control