everything on my arduino sketch is working accept my void loop is not repeating. The arduino completes the program once but then dose not repeat. IS there a command i need to tell the arduino to repeat the loop?
const int LED = 13;
void setup ()
{
pinMode(LED, OUTPUT);
}
void loop()
{
digitalWrite(LED, HIGH);
delay (1000);
digitalWrite(LED,LOW);
delay (1000);
}
Moderator edit: code tags.