const int ledPin = 13; // Pin number where the LED is connected
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn on the LED
delay(1000); // Wait for 1 second (1000 milliseconds)
digitalWrite(ledPin, LOW); // Turn off the LED
delay(1000); // Wait for 1 second
}