// The state of each LED when its corresponding push button is pressed

const int ledPins[] = {13, 14, 12};  // Pin numbers for the LEDs
const int buttonPins[] = {2, 4, 5};  // Pin numbers for the push buttons
int buttonStates[] = {0,0,0};

void setup() {
  for (int i = 0; i < 3; i++) {
    pinMode(ledPins[i], OUTPUT);
    pinMode(buttonPins[i], INPUT);
  }
}

void loop() {
  for (int i = 0; i < 3; i++) {
    buttonStates[i] = digitalRead(buttonPins[i]);
  if (buttonStates[i] == HIGH){
    for (int j = 0; j < 9; j++){
      digitalWrite(ledPins[i], HIGH);  // LED ON
      delay(500);
      digitalWrite(ledPins[i], LOW);  // LED OFF
      delay(500);
    }
  }
  }
}

esp:0
esp:2
esp:4
esp:5
esp:12
esp:13
esp:14
esp:15
esp:16
esp:17
esp:18
esp:19
esp:21
esp:22
esp:23
esp:25
esp:26
esp:27
esp:32
esp:33
esp:34
esp:35
esp:3V3
esp:EN
esp:VP
esp:VN
esp:GND.1
esp:D2
esp:D3
esp:CMD
esp:5V
esp:GND.2
esp:TX
esp:RX
esp:GND.3
esp:D1
esp:D0
esp:CLK
led1:A
led1:C
led2:A
led2:C
led3:A
led3:C
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r
btn3:1.l
btn3:2.l
btn3:1.r
btn3:2.r