2020年1月30日 星期四

Servo

#include <Servo.h>
Servo myservo;
int angle;
void setup()
{
  myservo.attach(9);
}
void loop()
{
  for(angle=0;angle<=180;angle++)
  {
    myservo.write(angle);delay(10);
  }
  for(angle=180;angle>=0;angle--)
  {
    myservo.write(angle);delay(10);
  }
}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...