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
- Committer:
- robt
- Date:
- 2012-10-15
- Revision:
- 0:e53d3f40f2c7
File content as of revision 0:e53d3f40f2c7:
/*Program Example 5.3: Uses analog input to control PWM period
*/
#include "mbed.h"
PwmOut PWM1(p21);
AnalogIn Ain(p20);
int main() {
while(1){
PWM1.period(Ain/10+0.001); // set PWM period
PWM1=0.5; // set duty cycle
wait(0.5);
}
}