int orangberusaha = 2;
void setup() {
pinMode(orangberusaha,OUTPUT);
Serial.begin(9600);
}
void loop() {
tone(orangberusaha, 150);
delay (1000);
noTone(orangberusaha);
delay (1000);
tone(orangberusaha, 100, 1000);
delay (2000);
}
int orangberusaha = 2;
void setup() {
pinMode(orangberusaha,OUTPUT);
Serial.begin(9600);
}
void loop() {
tone(orangberusaha, 150);
delay (1000);
noTone(orangberusaha);
delay (1000);
tone(orangberusaha, 100, 1000);
delay (2000);
}