Jimmy Fang / Mbed 2 deprecated TEST_PWM_0724

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 DigitalOut led1(LED1);
00003 
00004 PwmOut mypwm(PA_8);
00005 
00006 int main() 
00007 {
00008     mypwm.period_ms(10);
00009     mypwm.write(0.5);
00010     mypwm.pulsewidth_ms(1);
00011 }