JVM test

Dependencies:   mbed

Revision:
0:cf8a48b1fb23
Child:
1:eabc6f5b51d6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Oct 11 14:08:32 2012 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+BusOut rgb(LED_RED,LED_GREEN,LED_BLUE);
+
+int main() {
+    int i=0;   
+    while(1) {
+        rgb=i;
+        wait (0.25);
+        i++;            
+     }
+}
\ No newline at end of file