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 PwmOut pwm1(p21); 00004 AnalogIn ain(p20); 00005 00006 00007 int main() 00008 { 00009 pwm1.period_ms(20); 00010 float v=0,i=0; 00011 v = (ain*0.5)+(1.25); 00012 while(1) 00013 { 00014 pwm1.pulsewidth_ms(i); 00015 wait(1); 00016 v = (ain*0.5)+(1.25); 00017 i=v; 00018 } 00019 }
Generated on Tue Aug 2 2022 00:08:26 by
