#include "Song.h" void setup() { int notes[] = {262, 294, 330, 349, 392}; // Notenfrequenzen Song mySong (notes, sizeof(notes) / sizeof(notes[0]), 2); // oder: Song mySong(notes, 5, 2); mySong.play(); } void loop() { }