void setup(){ pinMode(13, OUTPUT); // set the pin as output } void loop(){ digitalWrite(13, HIGH); // sets the LED on delay(1000); // wait a second digitalWrite(13, LOW); // sets the LED off delay(1000); // wait a second }