博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Arduino】开发入门【八】舵机操作+源代码
阅读量:5788 次
发布时间:2019-06-18

本文共 1518 字,大约阅读时间需要 5 分钟。

【Arduino】开发入门【八】舵机操作+源代码

 

1.servo类成员函数

函数

说明

attach()

设定舵机的接口,只有9或10接口可利用。

write()

用于设定舵机旋转角度的语句,可设定的角度范围是0°到180°。

writeMicroseconds() 

用于设定舵机旋转角度的语句,直接用微秒作为参数。

read()

用于读取舵机角度的语句,可理解为读取最后一条write()命令中的值。

attached()

判断舵机参数是否已发送到舵机所在接口。

detach()

使舵机与其接口分离,该接口(9或10)可继续被用作PWM接口。

2.Arduino舵机实现代码

// Sweep// by BARRAGAN 
// This example code is in the public domain.#include
Servo myservo; // create servo object to control a servo // a maximum of eight servo objects can be created int pos = 0; // variable to store the servo position void setup() { myservo.attach(9); // attaches the servo on pin 9 to the servo object } void loop() { for(pos = 0; pos < 180; pos += 1) // goes from 0 degrees to 180 degrees { // in steps of 1 degree myservo.write(pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15ms for the servo to reach the position } for(pos = 180; pos>=1; pos-=1) // goes from 180 degrees to 0 degrees { myservo.write(pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15ms for the servo to reach the position } }

 

3.Arduino舵机连接图

  实物图中,舵机GND(棕色线)、VCC(红色线)、Signal(橙色线)

  

 

  线路图中,舵机GND(黑色线)、VCC(红色线)、Signal(黄色线) 

  

 

需要获取源代码的朋友,可以通过下面三种方式获取

(0)下载地址 

(1)请在评论中填写邮件地址,会通过邮箱发送源码。

(2)直接拷贝上面的代码

相关文章

 

//

原创声明 转载请注明

本文出自 

文章地址 

感谢大家的推荐和收藏

你的支持! 我们的动力!

你可能感兴趣的文章
运用Loadrunner测试Mysql数据库性能
查看>>
mysql ERROR 1396 (HY000): Operation CREATE USER failed 解决办法
查看>>
Spring MVC EL表达式不能显示
查看>>
Tomcat version 5.5 only supports J2EE 1.2, 1.3, and 1.4 Web modules
查看>>
【致青春】我们挥霍时间的年代
查看>>
WDS系列之四:自定义安装映像
查看>>
CentOS7 NTP server + keepalived
查看>>
jQuery 表单应用:全选/取消全选,表单验证,网页选项卡切换
查看>>
分布式计算相关
查看>>
Castle 整合.NET Remoting
查看>>
Windwos Server 2008 R2 DHCP服务
查看>>
SAS和SATA硬盘的区别
查看>>
现代程序设计 学生情况调查
查看>>
U盘安装linux后无法引导
查看>>
C# 矩阵作业
查看>>
俺的新书《Sencha Touch实战》终于出版了
查看>>
《空中交通管理基础》-潘卫军主编-第三章-航空器和飞行高度层
查看>>
关于数据库查询时报“query block has incorrect number of result columns”
查看>>
li下的ul----多级列表
查看>>
UVa 11292 勇者斗恶龙(The Dragon of Loowater)
查看>>