const int Buzzer = 11 ;
void setup() {
// put your setup code here, to run once:
pinMode(Buzzer , OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(Buzzer , 500);
delay(3000);
noTone(Buzzer);
delay(5000);
}
const int Buzzer = 11 ;
void setup() {
// put your setup code here, to run once:
pinMode(Buzzer , OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(Buzzer , 500);
delay(3000);
noTone(Buzzer);
delay(5000);
}