[PHOTON] GoT Theme

If you want to play half-tones too, you can remove the InternetButton library from your project and just add two file tabs to your project and copy-paste a slightly modified InternetButton library

https://github.com/ScruffR/InternetButton/blob/master/firmware/InternetButton.h
https://github.com/ScruffR/InternetButton/blob/master/firmware/InternetButton.cpp

This way you can use half-tones with # and b like this

void loop() {
    b.allLedsOff();
    b.ledOn(1,10,10,10);
    for(int i=0; i<4; i++)
      b.playSong("G4,2,C4,2,D#4,1,F4,1");

    b.ledOn(2,10,10,10);
    for(int i=0; i<4; i++)
      b.playSong("G4,2,C4,2,E4,1,F4,1");

    b.ledOn(3,10,10,10);
    b.playSong("G4,2,C4,2,D#4,1,F4,1,D4,2");

    b.ledOn(4,10,10,10);
    for(int i=0; i<3; i++)
      b.playSong("G3,2,A#3,1,C4,1,D4,2");

    b.ledOn(5,10,10,10);
    b.playSong("G3,2,A#3,C4,1,D4,4,F4,4,A#3,4,D#4,1,D4,1,F4,4,A#3,4,D#4,1,D4,1,C4,2");

    b.ledOn(6,10,10,10);
    for(int i=0; i<3; i++)
        b.playSong("G#3,1,A#3,1,C4,2,F3,2");

    b.ledOn(7,10,10,10);
    b.playSong("G4,4,C4,4,D#4,1,F4,1,G4,4,C4,4,D#4,1,F4,1,D4,2");

    b.ledOn(8,10,10,10);
    for(int i=0; i<4; i++)
        b.playSong("G3,2,A#3,1,C4,1,D4,2");
}