// LED Blink - Arduino UNO
const int LED_PIN = 13; // change to 8 if you wire there
void setup() {
pinMode(LED_PIN, OUTPUT);
}
void loop() {
digitalWrite(LED_PIN, HIGH); // LED on
delay(400); // 1000 ms = 1 second
digitalWrite(LED_PIN, LOW); // LED off
delay(800);
}