Guest User

Untitled

a guest
Jan 21st, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include <Servo.h>
  2.  
  3. #define SERVO_PIN 3
  4.  
  5. Servo myServo;
  6.  
  7. void setup() {
  8. myServo.attach(SERVO_PIN);
  9. delay(1000);
  10. myServo.write(90);
  11. }
  12.  
  13. void loop() {
  14. }
Add Comment
Please, Sign In to add comment