#define PIN_BUZZER 23
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
pinMode(PIN_BUZZER, OUTPUT);
}
void loop() {
tone(PIN_BUZZER, 500);
delay(500);
tone(PIN_BUZZER, 800);
delay(500);
}