PA 17 00 Matriz. Notas musicales.

 PA 17 00 Matriz. Notas musicales.

// Notas musicales DO, RE ,MI. FA, SOL, LA , SI en Hz
const int melody[] = {262, 294, 330, 350, 393, 440, 494};
const int buzzer = 3;

void setup() {
 }

void loop() {
  for (int i = 0; i < 7; i++) {
    tone(buzzer, melody[i], 300);
    delay(400);
  }
  noTone(buzzer);
  delay(1000);
}