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 #include "mbed.h" 00002 00003 //PWM output channel 00004 PwmOut PWM1(A5); 00005 00006 int main() 00007 { 00008 PWM1.period_ms(500); 00009 int x; 00010 x=1; 00011 00012 while(1) 00013 { 00014 PWM1.pulsewidth_ms(x); 00015 x=x+1; 00016 wait(.1); 00017 if(x==500) 00018 { 00019 x=1; 00020 } 00021 } 00022 }
Generated on Tue Jul 12 2022 18:09:23 by
1.7.2