Advertisement
mhdew

Servo Motor

Nov 4th, 2020
1,860
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include<Servo.h>
  2.  
  3. Servo miniservo;
  4.  
  5. void setup()
  6. {
  7.   miniservo.attach(4);
  8. }
  9.  
  10. void loop()
  11. {
  12.   for(int i=10;i<=100;i++){
  13.     miniservo.write(i);
  14.     delay(300);
  15.   }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement