void setup() { // program section that runs once pinMode(1, 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(1, HIGH); // turn the LED on delay(1000); // wait for one second digitalWrite(1, LOW); // turn the LED off delay(1000); }