Ekky Hermestian IW
/
Nucleo_pwm
Output a pwm signal.
main.cpp
- Committer:
- ekhiw
- Date:
- 2016-06-12
- Revision:
- 2:5fd675aafabf
- Parent:
- 0:4860a91fb495
File content as of revision 2:5fd675aafabf:
#include "mbed.h" PwmOut mypwm(PWM_OUT); DigitalOut myled(LED1); int main() { mypwm.period_ms(10); mypwm.pulsewidth_ms(1); printf("pwm set to %.2f %%\n", mypwm.read() * 100); while(1) { myled = !myled; wait(1); } }