Real Time Lab Program

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
robt
Date:
Sun Jan 25 16:30:02 2015 +0000
Commit message:
Real Time Lab Program

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 9a86d16fd587 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sun Jan 25 16:30:02 2015 +0000
@@ -0,0 +1,16 @@
+#include "mbed.h"
+
+DigitalOut Led1(LED1);
+DigitalIn Button1(p17);
+
+
+int main()
+{
+    while(1) {
+        if (Button1==1) {
+            Led1=1;
+        } else {
+            Led1=0;
+        }     
+    }
+}
diff -r 000000000000 -r 9a86d16fd587 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Sun Jan 25 16:30:02 2015 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/4fc01daae5a5
\ No newline at end of file