//kamis/21/3/2024
//Nama : aldy alfredo sipayung
//NIM: 2021230065
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32! and Buzzer");
}
void loop() {
// put your main code here, to run repeatedly:
tone(15,300);
delay(1); // this speeds up the simulation
noTone(15);
}