This program is a PWM which varies the dutty cycle by the touchpad of FRDM KL25Z. We can observe the result with the variation of RGBled intensity
Revision 0:c583c613f378, committed 2013-12-15
- Comitter:
- lcorralesc1
- Date:
- Sun Dec 15 15:34:21 2013 +0000
- Commit message:
- This program is a PWM which varies the dutty cycle by the touchpad of FRDM KL25Z. We can observe the result with the variation of RGBled intensity
Changed in this revision
diff -r 000000000000 -r c583c613f378 TSI.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TSI.lib Sun Dec 15 15:34:21 2013 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/vsluiter/code/TSI/#4dc2f5a3a731
diff -r 000000000000 -r c583c613f378 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sun Dec 15 15:34:21 2013 +0000 @@ -0,0 +1,18 @@ +#include "mbed.h" +#include "TSISensor.h" + +int main(void) { + PwmOut led(LED_GREEN); + PwmOut Salida(PTD4); + TSISensor tsi; + + while (true) { + if (tsi.readPercentage()!=0) // Asignacion de Luminosidad del led + { + led = 1.0 - tsi.readPercentage(); // Coordenadas del la asignacion del led + Salida=1.0 - tsi.readPercentage(); + wait(0.1); // Tiempo de es espera para retomar el ciclo + + } + } +}
diff -r 000000000000 -r c583c613f378 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sun Dec 15 15:34:21 2013 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/a9913a65894f \ No newline at end of file