const int buzzerPin = 15;
int alarmStatus = 0;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
init();
}
void loop() {
handleBuzzer();
delay(10); // this speeds up the simulation
}
const int buzzerPin = 15;
int alarmStatus = 0;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
init();
}
void loop() {
handleBuzzer();
delay(10); // this speeds up the simulation
}