Test fork

Dependencies:   mbed

Fork of mbed_blinky by Nathaniel Honka

main.cpp

Committer:
nathanhonka
Date:
2015-03-18
Revision:
1:8c53426523f5
Parent:
0:87a9adc733de
Child:
2:b2de914930bc

File content as of revision 1:8c53426523f5:

#include "mbed.h"

DigitalOut myled(LED1);

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