9451|5

1012

帖子

0

TA的资源

五彩晶圆(初级)

楼主
 

arduino/maple 通用自整定PID库 [复制链接]

简单的使用例子,也有高级模式
库在最后
/********************************************************
 * PID Basic Example
 * Reading analog input 0 to control analog PWM output 3
 ********************************************************/

#include <PID_v1.h>

//Define Variables we'll be connecting to
double Setpoint, Input, Output;

//Specify the links and initial tuning parameters
PID myPID(&Input, &Output, &Setpoint,2,5,1, DIRECT);

void setup()
{
  //initialize the variables we're linked to
  Input = analogRead(0);
  Setpoint = 100;

  //turn the PID on
  myPID.SetMode(AUTOMATIC);
}

void loop()
{
  Input = analogRead(0);
  myPID.Compute();
  analogWrite(3,Output);
}

[ 本帖最后由 ssawee 于 2012-1-24 22:57 编辑 ]

br3ttb-Arduino-PID-Library-20199df.zip

8.22 KB, 下载次数: 180

此帖出自stm32/stm8论坛

最新回复

maple 怎么定义  详情 回复 发表于 2014-4-7 01:12
点赞 关注
个人签名http://item.taobao.com/item.htm?id=12366456386
Arduino 兼容的  maple
 

回复
举报

2002

帖子

24

TA的资源

五彩晶圆(高级)

沙发
 
That's great! Cool
此帖出自stm32/stm8论坛
 
 

回复

1012

帖子

0

TA的资源

五彩晶圆(初级)

板凳
 
不好意思 ,上面这个不是自动整定的库

要下面一个库才能让其自动整定
http://arduino.cc/playground/Code/PIDAutotuneLibrary
此帖出自stm32/stm8论坛

点评

楼主能留下QQ 吗。求助  详情 回复 发表于 2012-11-30 16:01
 
个人签名http://item.taobao.com/item.htm?id=12366456386
Arduino 兼容的  maple
 

回复

44

帖子

0

TA的资源

一粒金砂(中级)

4
 

回复 板凳 ssawee 的帖子

楼主能留下QQ 吗。求助
此帖出自stm32/stm8论坛
 
 
 

回复

1

帖子

0

TA的资源

一粒金砂(初级)

5
 
Arduino 兼容的  maple
此帖出自stm32/stm8论坛
 
 
 

回复

5

帖子

0

TA的资源

一粒金砂(初级)

6
 
maple 怎么定义
此帖出自stm32/stm8论坛
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表