/*===========================
|| PROGAM PENYALAKAN BUZZER ||
|| BY: MUHAMMAD IBRAL ||
===========================*/
int buzz = 2;
void setup() {
// put your setup code here, to run once:
pinMode(buzz,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(buzz, 1000, 5000);
delay(1000);
tone(buzz, 500, 5000);
delay(1000);
}