Hello community,
I have a project with 5 LED stripes (each has 216 LEDs). The LEDs are powered with an power supply adapter. So i just connected the ground and the Data with my Arduino uno. It works. Next step...
I have different RGB colors and I want them to wipe in and then to strobe for 30 sec.
These are my RGB Colors.
uint32_t pluto = strip.Color (0 , 153, 153);
uint32_t neptun = strip.Color (255 , 0, 165);
uint32_t uranus = strip.Color (255 , 0, 165);
uint32_t saturn = strip.Color (0, 153, 255);
uint32_t jupiter = strip.Color (255, 0, 0);
uint32_t mars = strip.Color (0, 153, 255);
uint32_t erde = strip.Color (0, 153, 153);
uint32_t seele = strip.Color (204, 0, 255);
uint32_t synMond = strip.Color (255, 153, 0);
uint32_t sonne = strip.Color (153, 204, 0);
uint32_t jahreston = strip.Color (0, 153, 153);
uint32_t merkur = strip.Color (0, 153, 153);
uint32_t venus = strip.Color (204, 0, 255);
uint32_t platJahreston = strip.Color (204, 0, 102);
uint32_t Tageslicht = strip.Color (127, 127, 127);
So now I can put them on LEDS with colorwipe, like this: colorWipe(pluto, 50); // Pluto
but how to strobe them for 30 sec each, one after another? I know that Arduino works in Microsec...can someone help me please. I can´t find a sketch like this. I also have problems to create the color orange. Someone had the same problem?
After the last strobe of "platJahreston" I want it to switch to "tageslicht" (white) without wipe and strobe and this has to slowly fade out. Any ideas?
Thank you very much for your help.