#define BUZZER_PIN 3 // Define the pin for the buzzer
void setup() {
pinMode(BUZZER_PIN, OUTPUT); // Set the buzzer pin as an output
}
void loop() {
// Make the buzzer sound
digitalWrite(BUZZER_PIN, HIGH);
delay(1000); // Adjust the delay for the desired buzz duration
digitalWrite(BUZZER_PIN, LOW);
delay(1000); // Adjust the delay for the silence duration
}