Eric Petit / PWM

Dependents:   SoufflerieSP1-vers2

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pwm.cpp Source File

pwm.cpp

00001 #include "mbed.h"
00002 #include "pwm.h"
00003 PwmOut PwmMot(PA_15);
00004 
00005 void InitPwmMot(void)
00006 { 
00007   PwmMot.period_ms(20);
00008   PwmMot.pulsewidth_us(875);
00009 }
00010 
00011 void SetPwmMot(unsigned char Pourcent)
00012 { 
00013   int th = 875 + (float)Pourcent * 11.25;
00014   PwmMot.pulsewidth_us(th);
00015 }