#define BUZZER_PIN 14 // Define the pin connected to the buzzer
void setup() {
Serial.begin(115200);
pinMode(BUZZER_PIN, OUTPUT);
}
void loop() {
// Make sound for 2 seconds
digitalWrite(BUZZER_PIN, HIGH);
delay(2000); // 2 seconds
digitalWrite(BUZZER_PIN, LOW);
// Wait for 3 second before making the next sound
delay(3000);
}