test programma voor fading led

Dependencies:   mbed

main.cpp

Committer:
masterhorror
Date:
2015-03-19
Revision:
0:1929983c9cc5

File content as of revision 0:1929983c9cc5:

#include "mbed.h"

PwmOut blauw(p25);
float teller=0;
int main() 
{
    while(1) 
    {
        blauw.period(0.002f);  
        blauw.write(teller+0.01f);
        teller=teller+0.01f;
    }
}