const int buzzerpin=8;
void setup() {
// put your setup code here, to run once:
pinMode(buzzerpin, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(buzzerpin, 2);
delay(200);
noTone(buzzerpin);
delay(200);
}