/* Set the pins for our LED's */ int led1 = 1; int led2 = 2; int led3 = 3; int led4 = 4; int led5 = 5; /* Set how many times we want the LED's to loop through */ int count = 5; int i = 0; void setup() { /* Set the LED's as OUTPUT's */ pinMode(led1, OUTPUT); pinMode(led2, OUTPUT); pinMode(led3, OUTPUT); pinMode(led4, OUTPUT); pinMode(led5, OUTPUT); } void loop() { /* Loop through flashing the LED's */ while(i