TINF_MyPwm

Dependents:   TINF_MyPwm

main.cpp

Committer:
martwerl
Date:
2018-06-22
Revision:
0:728d17af5d23

File content as of revision 0:728d17af5d23:

#include "mbed.h"
#include "MyPwm.h"

MyPwm Pwm(LED1);
int main()
{
    while (1)
    {
        Pwm.dimUp();
        Pwm.dimDown();
        break;
    }
}