Toshihisa T
/
pwmtest
LED1 light use with PWM
Revision 0:9863300d25b7, committed 2010-10-02
- Comitter:
- tosihisa
- Date:
- Sat Oct 02 14:43:27 2010 +0000
- Commit message:
- LED1 light use with PWM
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 9863300d25b7 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sat Oct 02 14:43:27 2010 +0000 @@ -0,0 +1,17 @@ +#include "mbed.h" + +PwmOut led(LED1); + +int main() { + while(1) { + for(float p = 0.0f; p < 0.5f; p += 0.01f) { + led = p; + wait(0.02); + } + for(float p = 0.49f; p > 0.0f; p -= 0.01f) { + led = p; + wait(0.02); + } + wait(0.5); + } +}
diff -r 000000000000 -r 9863300d25b7 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sat Oct 02 14:43:27 2010 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/9114680c05da