Gerardo Carmona
/
02_RGB_Azul_Verde_Rojo
Turn on the 3 colors of the included RGB Led
This program uses on board RGB Led.
Revision 0:0107f764ccc6, committed 2013-10-09
- 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 |
diff -r 000000000000 -r 0107f764ccc6 main.cpp --- /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; + } +}
diff -r 000000000000 -r 0107f764ccc6 mbed.bld --- /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