...

Dependencies:   mbed

main.cpp

Committer:
anmolhardik
Date:
2017-02-09
Revision:
0:55c055dbc4db

File content as of revision 0:55c055dbc4db:

#include "mbed.h"

DigitalOut myled(PTD1);

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