Saudin Dizdarevic
/
lpc1114test
First test on using mbed library with lpc1114 xpresso board.
Revision 0:15ea674d67d9, committed 2013-10-31
- Comitter:
- sdizdarevic
- Date:
- Thu Oct 31 18:48:11 2013 +0000
- Commit message:
- First test
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu Oct 31 18:48:11 2013 +0000 @@ -0,0 +1,12 @@ +#include "mbed.h" + +DigitalOut myled(dp28); + +int main() { + while(1) { + myled = 1; + wait(1); + myled = 0; + wait(1); + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Thu Oct 31 18:48:11 2013 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/9c8f0e3462fb \ No newline at end of file