Another blinky... this one for testing hg pushes

main_blinky.cpp

Committer:
Ralph Fulchiero
Date:
2018-12-13
Revision:
4:4b66db4c1714
Parent:
0:a57d9a3d7532

File content as of revision 4:4b66db4c1714:

#include "mbed.h"

DigitalOut myled(LED1);

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