// Define the pins for the LEDs
#define BLINK_LED_PIN 23
#define LED_PIN_1 22
void setup() {
// Initialize the pins as outputs
pinMode(BLINK_LED_PIN, OUTPUT);
pinMode(LED_PIN_1, OUTPUT);
// Ensure other LEDs are off
digitalWrite(LED_PIN_1, LOW);
}
void loop() {
// Blink the LED
digitalWrite(BLINK_LED_PIN, HIGH);
delay(500);
}