void setup() { // program section that runs once pinMode(13, OUTPUT);//assign pin 13 as an output } // the loop function runs over and over again forever void loop() { //runs program over and over until stopped digitalWrite(13, HIGH); // turn the LED on delay(1000); // wait for one second digitalWrite(13, LOW); // turn the LED off delay(1000); }