LedControllerTests

Dependencies:   LedController

Fork of ServomotorTests by NerfUS

main.cpp

Committer:
dupm2216
Date:
2017-02-25
Revision:
0:07953da87c60
Child:
1:6e4e8b9d6069

File content as of revision 0:07953da87c60:

#include "mbed.h"

DigitalOut myled(LED1);

int main() 
{
    while(1) 
    {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}