BusOut Hello World

Dependencies:   mbed

Fork of BusOut_HelloWorld by mbed official

Revision:
0:717993c337df
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Feb 11 17:29:01 2013 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+ 
+BusOut myleds(LED1, LED2, LED3, LED4);
+ 
+int main() {
+    while(1) {
+        for(int i=0; i<16; i++) {
+            myleds = i;
+            wait(0.25);
+        }
+    }
+}
\ No newline at end of file