First test on using mbed library with lpc1114 xpresso board.

Dependencies:   mbed

Files at this revision

API Documentation at this revision

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
diff -r 000000000000 -r 15ea674d67d9 main.cpp
--- /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);
+    }
+}
diff -r 000000000000 -r 15ea674d67d9 mbed.bld
--- /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