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

main.cpp

Committer:
tsoic
Date:
2015-02-10
Revision:
5:94c215df2b7c
Parent:
3:75399d0ba94e

File content as of revision 5:94c215df2b7c:

#include "mbed.h"
#include "Simon.h"

int main() {
    Simon simon;
    simon.gameStart(1);
}