int buzzerPin = 13;
void setup() {
 pinMode(buzzerPin, OUTPUT);
}

void loop() {
 digitalWrite(buzzerPin,HIGH); // put your main code here, to run repeatedly:
 delay(500);
 digitalWrite(buzzerPin,LOW);
 delay((500));
}