/*************定义全局变量*****************/
uchar Kp,TI,Td
int Set_speed;
/*************PID初始化函数***************/
void PID_init(void){
Serror=0;
FError=0;
Kp=30;
TI=500;
Td=10;
}
int PID_control(int Now_speed)
{
int Error,Serror,result;
Error=Now_speed-Set_speed;
Serror=Serror+Error;
result=(Kp*Error+Kp*0.05/TI*Serror+Kp*Td/0.05*(Error-FError));
FError=Error;
//对占空比进行限幅处理
if(result《10)
{result=0;} else
if(result》1000)
{result=1000;}
return result;
}
-
单片机
+关注
关注
6037文章
44561浏览量
635602 -
PID
+关注
关注
35文章
1472浏览量
85547
原文标题:最简单的单片机PID控制算法程序
文章出处:【微信号:changxuemcu,微信公众号:畅学单片机】欢迎添加关注!文章转载请注明出处。
发布评论请先 登录
相关推荐
评论