Advertisement
computermuseo

servo arduino

Apr 16th, 2015
2,207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. #include <Servo.h>
  2.  
  3. Servo myservo; // create servo object to control a servo
  4. // twelve servo objects can be created on most boards
  5.  
  6. int pos = 0; // variable to store the servo position
  7.  
  8. void setup()
  9. {
  10. myservo.attach(9); // attaches the servo on pin 9 to the servo object
  11. }
  12.  
  13. void loop()
  14. {
  15. for(pos = 0; pos <= 180; pos += 1) // goes from 0 degrees to 180 degrees
  16. { // in steps of 1 degree
  17. myservo.write(pos); // tell servo to go to position in variable 'pos'
  18. delay(15); // waits 15ms for the servo to reach the position
  19. }
  20. for(pos = 180; pos>=0; pos-=1) // goes from 180 degrees to 0 degrees
  21. {
  22. myservo.write(pos); // tell servo to go to position in variable 'pos'
  23. delay(15); // waits 15ms for the servo to reach the position
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement