Advertisement
Guest User

Untitled

a guest
Mar 31st, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include <Servo.h>
  2. Servo ESC;  
  3.  
  4. void setup() {
  5.   ESC.attach(4);
  6.   ESC.write(0);  
  7. }
  8.  
  9. void loop() {
  10.   ESC.write(100);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement