//Muhammad Raqhib hamdi
//2021230037
//Unsada Teknologi Informasi
//Lab 3.6 ESP 32 Bekerja dengan Buzzer
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);
}