arduino 如何控制舵机 反转-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 8816|回复: 1

[已解决] arduino 如何控制舵机 反转

[复制链接]
发表于 2012-7-14 17:52 | 显示全部楼层 |阅读模式
arduino控制舵机反转,初始是零度,一开始就反转
我输入负角度,但没有反映,望各位大虾指点一下
程序如下:
#include <Servo.h>
Servo myservo;
                  
int pos = 0;   
void setup()
{
  myservo.attach(9);  
}
void loop()
{
  for(pos = 0; pos < 30; pos += 1)   
  {                                                     
    myservo.write(pos*(-1));        
    delay(15);                     
  }

}
发表于 2012-7-14 20:08 | 显示全部楼层
Arduino教程(提高篇)——舵机的驱动   http://www.arduino.cn/thread-1038-1-1.html
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-12-1 01:25 , Processed in 0.094868 second(s), 16 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表