Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 637 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 637 Bytes

Simon

Simon game for Particle Photon with "Internet Button" shield.

Working game

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