Turn on the 3 colors of the included RGB Led

Dependencies:   mbed

This program uses on board RGB Led.

Revision:
0:0107f764ccc6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Oct 09 20:55:40 2013 +0000
@@ -0,0 +1,24 @@
+#include "mbed.h"
+
+DigitalOut bled(LED1);
+DigitalOut gled(LED2);
+DigitalOut rled(LED3);
+
+int main() {
+    // Apago los leds
+    bled = 1;
+    gled = 1;
+    rled = 1;
+    
+    while(1) {
+        bled = 0;  // Prendo Azul
+        wait(1);
+        bled = 1;
+        rled = 0;  // Prendo Rojo
+        wait(1);
+        rled = 1;
+        gled = 0;  // Prendo Verde
+        wait(1);
+        gled = 1;
+    }
+}