Hi you all
I really love arduino , and I'm using it most of all for lightning effects.
Too bad I struggle with the code... i do not have the magic braincel for programming.... :o
So , I hope you can help me out with this project?
I want to blink a led 3 times for 1 second , then a 4 second pause , and then endless loop this.
I have allready the code for this.
[code]int led = 9;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite (led, LOW);
delay(1000);
digitalWrite(led, HIGH);
delay(1000);
digitalWrite (led, LOW);
delay(1000);
digitalWrite(led, HIGH);
delay(1000);
digitalWrite (led, LOW);
delay(1000);
{
digitalWrite(led, LOW);
delay(4000);
}
}
But I want to fade the leds as well , and now I'm stuck...
I have found this library https://github.com/jgillick/arduino-LEDFader
and now I want to integrate the 2 together so the leds fade in and out .
Greetings from Bart
[/code]