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