Test fork

Dependencies:   mbed

Fork of mbed_blinky by Nathaniel Honka

main.cpp

Committer:
nathanhonka
Date:
2015-03-18
Revision:
2:b2de914930bc
Parent:
1:8c53426523f5

File content as of revision 2:b2de914930bc:

#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);
        // Don't push this comment
    }
}