Making a nested loop repeat before going back to main loop

use a for loop

for(int i = 0; i < 5; i++)
{
  digitalWrite(led, HIGH);
  delay(200);
  digitalWrite(led, LOW);
  delay(2000);
}

its on the reference now that you know what your looking for

Thank you VERY much once again.

yea, no problem, as long as your trying we dont mind at all

1 Like