Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void setup() {
- for (int i=0;i<20;i++){pinMode(i,1);}
- }
- void loop() {
- for (int i=0;i<20;i++){digitalWrite(i,1);}
- delay(200);
- for (int i=0;i<20;i++){digitalWrite(i,0);}
- delay(200);
- }
Advertisement
Add Comment
Please, Sign In to add comment