Julien Couvreur
Published © CC BY

"Simon" game for Particle Internet Button

Remake of the 1978 classic toy. No assembly required, using Particle's "Internet Button".

BeginnerFull instructions provided2,019
"Simon" game for Particle Internet Button

Things used in this project

Hardware components

Internet Button
Particle Internet Button
This is a Particle Photon with the "Internet Button" shield. Specs at https://docs.particle.io/datasheets/photon-shields/#internet-button
×1

Story

Read more

Code

Game code

C/C++
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();
}

Source code for the Simon library

Credits

Julien Couvreur

Julien Couvreur

1 project • 2 followers

Comments