Blinks the LEDs of mBuino one at a time from left to right, then back right to left, then they all stream on from left to right, and shut off from right to left.

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
Experiment626
Date:
Mon Jul 14 19:09:55 2014 +0000
Commit message:
mBuinoBlinky Published

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 aa0e1ad88af5 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Jul 14 19:09:55 2014 +0000
@@ -0,0 +1,42 @@
+#include "mbed.h"
+
+DigitalOut LED[] = {(P0_7), (P0_8), (P0_2), (P0_20), (P1_19), (P0_17), (P0_23)};// declare 7 LEDs
+
+float delayTime = .05;
+
+int main()
+{
+    while(1)
+    {
+        delayTime = 0.05;
+        for(int x = 0; x < 7; x++)
+        {
+            LED[x] = 1; // turn on
+            wait(.2); // delay
+        
+            LED[x] = 0; // turn off
+            wait(delayTime); // delay
+        }
+        for(int x = 6; x >= 0; x--)
+        {
+            LED[x] = 1; // turn on
+            wait(.2); // delay
+        
+            LED[x] = 0; // turn off
+            wait(delayTime); // delay
+        }
+
+        for(int x = 0; x < 7; x++)
+        {
+            LED[x] = 1; // turn on
+            wait(delayTime); // delay
+        }
+        for(int x = 6; x >= 0; x--)
+        {
+            LED[x] = 0; // turn off
+            wait(delayTime); // delay
+        }
+        
+
+    }
+}
diff -r 000000000000 -r aa0e1ad88af5 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Jul 14 19:09:55 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/024bf7f99721
\ No newline at end of file