Hangman game using qp a 16x2 LCD and joystick.

Dependencies:   TextLCD mbed qp

main.cpp

Committer:
tylerjw
Date:
2012-02-09
Revision:
1:4efaebc256d3
Parent:
0:1521c946a57b

File content as of revision 1:4efaebc256d3:

#include "qp_port.h"
#include "hangman.h"
#include "bsp.h"

Q_DEFINE_THIS_FILE

DigitalOut myled(LED1);

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