tried

Dependencies:   mbed

Fork of adam_try by CHE-HAO CHUANG

main.cpp

Committer:
adam_z
Date:
2016-01-12
Revision:
1:d6e970ba1de1
Parent:
0:0583c47b5640

File content as of revision 1:d6e970ba1de1:

#include "mbed.h"

PwmOut mypwm(PWM_OUT);

DigitalOut myled(LED1);

int main() {
    
    mypwm.period_ms(10);
    mypwm.pulsewidth_ms(1);//llll
  
    printf("pwm set to %.2f %%\n", mypwm.read() * 100);
    
    while(1) {
        myled = !myled;
        wait(1);
    }
}