Blink a LED for the tinycortex board
A blink a led for the Tinycortex board. More info: http://justanotherelectronicsblog.com/?p=124
Diff: main.cpp
- Revision:
- 0:01a5c6ce11e9
diff -r 000000000000 -r 01a5c6ce11e9 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Tue Aug 11 21:04:24 2015 +0000 @@ -0,0 +1,13 @@ +#include "mbed.h" +#include "pinout.h" + +DigitalOut myled(LED1); + +int main() { + while(1) { + myled = 1; + wait(0.2); + myled = 0; + wait(0.2); + } +}