Files
foc/3rd/pid_control.h

10 lines
186 B
C
Raw Permalink Normal View History

2025-11-12 10:32:45 +08:00
#ifndef __PID_CONTROL_H
#define __PID_CONTROL_H
float PID_Controller(float Kp, float Ki, float Kd, float Error);
float _constrain(float amt, float low, float high);
#endif