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.
main.cpp
00001 /*Program Example 4.5: PWM control to DC motor is repeatedly ramped 00002 */ 00003 #include "mbed.h" 00004 PwmOut PWM1(p21); 00005 float i; 00006 int main() 00007 { 00008 PWM1.period(0.010); //set PWM period to 10 ms 00009 while(1) { 00010 for (i=0; i<1; i=i+0.01) { 00011 PWM1=i; // update PWM duty cycle 00012 wait(0.2); 00013 } 00014 } 00015 }
Generated on Sun Jul 24 2022 14:12:27 by
1.7.2