Files
foc/3rd/pid_control.h
2025-11-12 10:32:45 +08:00

10 lines
186 B
C

#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