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 5.3: Uses analog input to control PWM period 00002 */ 00003 #include "mbed.h" 00004 PwmOut PWM1(p21); 00005 AnalogIn Ain(p20); 00006 00007 int main() { 00008 while(1){ 00009 PWM1.period(Ain/10+0.001); // set PWM period 00010 PWM1=0.5; // set duty cycle 00011 wait(0.5); 00012 } 00013 } 00014
Generated on Mon Aug 22 2022 02:18:46 by
1.7.2