Turn on the 3 colors of the included RGB Led

Dependencies:   mbed

This program uses on board RGB Led.

Files at this revision

API Documentation at this revision

Comitter:
gcarmonar
Date:
Wed Oct 09 20:55:40 2013 +0000
Commit message:
Version 1.0;

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
--- /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;
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Wed Oct 09 20:55:40 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/a9913a65894f
\ No newline at end of file