I will heed the advise and attempt to learn about using arrays.. This old brain of mine doesn't absorb like it used to..
Can you show me an example of using a push button to start one of the timers.. I hate asking but I really have no idea how to do it and I'm feeling pretty defeated with my futile attempts. I have looked at the button examples and I can light my LEDs but cant for the life of me figure out the timer issue..
Pushbuttons are unaccountably nasty. The problem is called "contact bounce". The thing is a normal switch - light switch or anything - doesn't immediately make contact. It's a mechanical device which moves much more slowly than your Arduino program. An Arduino processor is fast enough to see the little tiny sparks jumping the gap in a few microseconds and then it thinks you've pressed the button 4 or 5 times.
Once you've got the contact bounce idea, then you can look at the different methods of "debouncing" and pick one that you understand and can apply to your program.
I can de bounce the button without a problem, I have done that in different sketches.. My issue is getting the button state change to start one of my timers in my sketch..
I want one of the strings to not start until a push button is pressed, then stop at the end of the blinkDuration and wait for the button push before it starts again.. As it is now, all 20 start and continuously loop until power is shut off..