#define BUTTON1 32

#include <ezButton.h>
ezButton button1(BUTTON1);
ezButton button2(33);
ezButton button3(25);

void setup(){
  Serial.begin(115200);
  pinMode(5, OUTPUT);
  button1.setDebounceTime(50);
  button2.setDebounceTime(50);
  button3.setDebounceTime(50);
}

void loop(){
  button1.loop();
  button2.loop();
  button3.loop();
  readButtonState(); // Call the function to check the button state
}

void readButtonState(){
  if(button1.isPressed()){
    Serial.println("Button 1 is pressed!");
  }
  if(button2.isPressed()){
    Serial.println("Button 2 is pressed!");
  }
  if(button3.isPressed()){
    Serial.println("Button 3 is pressed!");
  }
}
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
btn3:1.l
btn3:2.l
btn3:1.r
btn3:2.r
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r
led1:A
led1:C