Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: SoufflerieSP1-vers2
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 }
Generated on Tue Aug 9 2022 16:47:16 by
1.7.2