const int buzzerPin=2;
void setup()
{
pinMode(buzzerPin, OUTPUT);
}
void loop()
{
tone(buzzerPin,200);
delay(1678);
// Turn off the tone
noTone(buzzerPin);
delay(250);
}
const int buzzerPin=2;
void setup()
{
pinMode(buzzerPin, OUTPUT);
}
void loop()
{
tone(buzzerPin,200);
delay(1678);
// Turn off the tone
noTone(buzzerPin);
delay(250);
}