#define BUZZ 11
void setup() {
pinMode(BUZZ, OUTPUT);
}
void loop() {
delay(1500);
for(int i=0;i<3;i++){
tone(BUZZ, 500, 200);
delay(300);
}
delay(500);
for(int i=0;i<3;i++){
tone(BUZZ,500, 600);
delay(800);
}
delay(500);
for(int i=0;i<3;i++){
tone(BUZZ, 500, 200);
delay(300);
}
delay(1500);
}