const int pinLed = 8;

void setup() {
 pinMode(pinLed, OUTPUT);
}

void loop() {
digitalWrite(pinLed, HIGH);
delay(1000);
digitalWrite(pinLed, LOW);