Advertisement
sombruxo

main_motores

May 26th, 2023
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. #include "motor.h"
  2.  
  3. // Motor A connections
  4. int enA = 9;
  5. int in1 = 8;
  6. int in2 = 7;
  7. // Motor B connections
  8. int enB = 3;
  9. int in3 = 5;
  10. int in4 = 4;
  11.  
  12. Motor m1;
  13. Motor m2;
  14.  
  15. void setup() {
  16. m1.setPinuot(9, 8, 7);
  17. m2.setPinuot(3, 5, 4);
  18. }
  19.  
  20. void loop() {
  21. m1.setVelocidad(200, false);
  22. m1.arrancar();
  23. delay(1000);
  24. m1.parar();
  25. delay(1000);
  26. m1.arrancar();
  27. delay(1000);
  28. m1.parar();
  29. delay(1000);
  30. m1.setVelocidad(-200);
  31. delay(1000);
  32. m1.off();
  33. delay(2000);
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement