Simon game for Particle Photon with "Internet Button" shield.
To use this in your Internet Button, start a new project in the Particle IDE, add the "InternetButton" and "Simon" libraries and copy the code below into your main file.
#include "InternetButton/InternetButton.h"
#include "Simon/Simon.h"
Simon s = Simon();
void setup() {
s.setup();
}
void loop() {
s.loop();
}
More information at https://particle.hackster.io/Dumky/particle-photon-simon