void setup() {
pinMode(8, OUTPUT); // Set pin 8 as an output
}
void loop() {
digitalWrite(8, HIGH); // Turn the LED on
delay(2000); // Wait for 2 seconds
digitalWrite(8, LOW); // Turn the LED off
delay(2000); // Wait for 2 seconds
}