Contest IOT GSE5
/
contest_IOT3
Pong Game Tea Term
Fork of contest_IOT2 by
main.cpp
- Committer:
- bcostm
- Date:
- 2014-02-21
- Revision:
- 0:028fac66239d
- Child:
- 1:e9d1c42a73ae
File content as of revision 0:028fac66239d:
#include "mbed.h" Serial pc(SERIAL_TX, SERIAL_RX); DigitalOut myled(LED1); int main() { int i = 1; pc.printf("Hello World !\n"); while(1) { wait(1); pc.printf("This program runs since %d seconds.\n", i++); myled = !myled; } }