Simple Simon says mbed game which makes random queue, shows it with onboard LEDs and takes user input with push buttons.

Dependencies:   PinDetect mbed beep

Committer:
tsoic
Date:
Tue Feb 10 12:37:56 2015 +0000
Revision:
5:94c215df2b7c
Parent:
3:75399d0ba94e
Added piezo speaker and sound effects

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tsoic 0:d53b17bb7ffa 1 #include "mbed.h"
tsoic 0:d53b17bb7ffa 2 #include "Simon.h"
tsoic 0:d53b17bb7ffa 3
tsoic 0:d53b17bb7ffa 4 int main() {
tsoic 3:75399d0ba94e 5 Simon simon;
tsoic 3:75399d0ba94e 6 simon.gameStart(1);
tsoic 0:d53b17bb7ffa 7 }