#include <MIDIReader.h>
#include <MIDIPlayer.h>
#include "music.h"
MIDIPlayerSoft p(2);
MIDIReader r(&p, super_mario, sizeof(super_mario) / sizeof(super_mario[1]));
void setup() {
// put your setup code here, to run once:
r.start();
}
void loop() {
// put your main code here, to run repeatedly:
r.tick();
}