void setup() { pinMode(25, OUTPUT); // Set the built-in LED pin as output } void loop() { digitalWrite(25, HIGH); // Turn the LED on delay(1000); // Wait for 500 milliseconds digitalWrite(25, LOW); // Turn the LED off delay(1000); // Wait for 500 milliseconds }