BusOut example

Dependencies:   mbed

Revision:
0:14e600ce8429
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Nov 20 21:01:24 2014 +0000
@@ -0,0 +1,20 @@
+#include "mbed.h"
+
+
+BusOut leds(LED1, D9, LED2, LED3);
+
+int x = 1;
+
+int main()
+{
+    leds  = 1;
+    while (true) {
+        leds  = x;
+        x = x << 1;
+        if (x == 16){
+            x = 1;
+        }
+        printf("%d\n", x);
+        wait(1);
+    }
+}
\ No newline at end of file