代码搜索:pid控制

找到约 10,000 项符合「pid控制」的源代码

代码结果 10,000
www.eeworm.com/read/406761/11436165

mwp pid.mwp

www.eeworm.com/read/406209/11447797

h pid.h

#ifdef __cplusplus extern "C" { #endif // Typical PID Control Frame struct STRUCT_PID{ Uint32 SetPoint; //设定目标值 Uint32 Proportion; //比例常数 Uint32 Integral; //积分常数 Uint32 Derivative
www.eeworm.com/read/406209/11447802

c pid.c

#include "DSP281x_Device.h" #include "pid.h" //PID Calculation Program Uint32 PIDCalc(struct STRUCT_PID *pp,Uint32 NextPoint,Uint32 SetPoint) { Uint32 dError,Error; pp->SetPoint=SetPoint;
www.eeworm.com/read/406124/11449107

ppt pid.ppt

www.eeworm.com/read/404908/11476248

mwp pid.mwp

www.eeworm.com/read/404908/11476306

mwp pid.mwp

www.eeworm.com/read/402940/11526378

cpp pid.cpp

#include #include struct _pid { int pv; /*integer that contains the process value*/ int sp; /*integer that contains the set point*/ float integral; float pgain; float igain
www.eeworm.com/read/400461/11576187

h pid.h

#ifdef __cplusplus extern "C" { #endif // Typical PID Control Frame struct STRUCT_PID{ Uint32 SetPoint; //设定目标值 Uint32 Proportion; //比例常数 Uint32 Integral; //积分常数 Uint32 Derivative
www.eeworm.com/read/400461/11576192

c pid.c

#include "DSP281x_Device.h" #include "pid.h" //PID Calculation Program Uint32 PIDCalc(struct STRUCT_PID *pp,Uint32 NextPoint,Uint32 SetPoint) { Uint32 dError,Error; pp->SetPoint=SetPoint;
www.eeworm.com/read/158525/11603643

o pid.o