Hangman game using qp a 16x2 LCD and joystick.

Dependencies:   TextLCD mbed qp

main.cpp

Committer:
tylerjw
Date:
2012-02-08
Revision:
0:1521c946a57b
Child:
1:4efaebc256d3

File content as of revision 0:1521c946a57b:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}