int nada [] = {330,349,392,523,392,330,392,294,330,349,294,392,
330,330,262,262,440,440,494,
523,392,330,349,392,349,330,249,262,330,349,392,523,392,330,392,523,249,330,349,
249,392,349,330,262,262,440,440,494,392,330,349,392,349,330,249,262};
int durasi = 300;
void setup() {
pinMode(8,OUTPUT); // put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
for( int i=0; i<57; i++){
tone(8, nada [i],durasi);
delay(durasi);
noTone(8);
delay(100);
}
}