Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <Servo.h>
- 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()
- {
- myservo.write(90); // Writes position 90, which in this case will be center = stop
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement