trial

Dependencies:   mbed

main.cpp

Committer:
Rajkumar_RK
Date:
2018-09-24
Revision:
0:a9431479515a

File content as of revision 0:a9431479515a:

#include "mbed.h"

DigitalOut myled(LED1);

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