int Buz1 = 4;
void setup()
{
pinMode(Buz1, OUTPUT);
}
void loop()
{
tone(Buz1, HIGH);
delay(1000);
noTone(Buz1);
delay(2000);
}
int Buz1 = 4;
void setup()
{
pinMode(Buz1, OUTPUT);
}
void loop()
{
tone(Buz1, HIGH);
delay(1000);
noTone(Buz1);
delay(2000);
}