Advertisement
Guest User

Código arreglo 1

a guest
Mar 20th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. int mot = 8;
  2. int mot2 = 9;
  3.  
  4. void setup () {
  5. pinMode (mot, OUTPUT);
  6. pinMode (mot2, OUTPUT);
  7. }
  8.  
  9. void loop () {
  10. digitalWrite (mot, HIGH);
  11. digitalWrite (mot2, LOW);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement