hi all i'm using this sketch to flash led's at the end of the sketch i would like to flash leds on pins 4 and 7 simultaneously can any one tell me if its possible and how to do it thanks marko
/* Blink Turns on an LED This example code is in the public domain. */
void setup() { // initialize the digital pin as an output. // Pin 2/7 has an LED connected on most Arduino boards: pinMode(2, OUTPUT); pinMode(3, OUTPUT); pinMode(4, OUTPUT); pinMode(5, OUTPUT); pinMode(6, OUTPUT); pinMode(7, OUTPUT); }
void loop() { digitalWrite(2, HIGH); // set the LED on delay(1000); // wait for a second digitalWrite(2, LOW); // set the LED off delay(0); // wait for a second
digitalWrite(3, HIGH); // set the LED on delay(1000); // wait for a second digitalWrite(3, LOW); // set the LED off delay(0); // wait for a second
digitalWrite(4, HIGH); // set the LED on delay(1000); // wait for a second digitalWrite(4, LOW); // set the LED off delay(0); // wait for a second
digitalWrite(5, HIGH); // set the LED on delay(1000); // wait for a second digitalWrite(5, LOW); // set the LED off delay(0); // wait for a second
digitalWrite(6, HIGH); // set the LED on delay(1000); // wait for a second digitalWrite(6, LOW); // set the LED off delay(2000); // wait for a second digitalWrite(7, HIGH); // set the LED on delay(50); // wait for a second digitalWrite(7, LOW); // set the LED off delay(50);
}