int ledPin = 13; // choose the pin for the LED
void setup() {
pinMode(ledPin, OUTPUT); // initialize the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // turn the LED on
delay(1000); // wait for a second
digitalWrite(ledPin, LOW); // turn the LED off
delay(1000); // wait for a second
}