2 Star 9 Fork 6

aniu360/Fuzzy_PID

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pid_fuzzy.h 542 Bytes
一键复制 编辑 原始数据 按行查看 历史
Arvin 提交于 2016-09-02 14:18 . Add files via upload
#ifndef PID_H_
#define PID_H_
#include "stm32f10x.h"
typedef struct PID
{
float Kp; // 增量式积分系数
float Ki;
float Kd;
float T;
float K1; // 增量式积分系数
float K2;
float K3;
float LastError; //Error[-1]
float PrevError; // Error[-2]
float pwm_out;
uint16_t flag;//温度状态标志位
}PID;
//void PID_init(PID *structpid);
void PID_Set(PID *structpid,float Kp,float Ki,float Kd,float T);
int PID_realize(PID *structpid,uint16_t s,uint16_t in);
void PID_Init(PID *structpid);
#endif /* PID_H_ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/aniu360/Fuzzy_PID.git
[email protected]:aniu360/Fuzzy_PID.git
aniu360
Fuzzy_PID
Fuzzy_PID
master

搜索帮助