PwmOut Hello World

Dependencies:   mbed

Fork of PwmOut_HelloWorld by mbed official

For more example code see the PwmOut page.

main.cpp

Committer:
mbed_official
Date:
2013-02-12
Revision:
0:50d2b9c62765

File content as of revision 0:50d2b9c62765:

#include "mbed.h"
 
PwmOut led(LED1);
 
int main() {
    while(1) {
        for(float p = 0.0f; p < 1.0f; p += 0.1f) {
            led = p;
            wait(0.1);
        }
    }
}