LED HELLO WORD

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
yaoli
Date:
Wed Feb 05 10:44:28 2014 +0000
Child:
1:fccc9a976a51
Commit message:
ADDED LEB2

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	Wed Feb 05 10:44:28 2014 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+
+DigitalOut myled(LED1);
+DigitalOut myled2(LED2);
+
+int main() {
+    while(1) {
+        myled = 1;
+        myled2 = 0;
+        wait(0.2);
+        myled2 = 1;
+        wait(0.2);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Wed Feb 05 10:44:28 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/a9913a65894f
\ No newline at end of file