HW3- swrd

Dependencies:   PinDetect_KL25Z USBDevice mbed

Fork of octasword by TONY WU

main.cpp

Committer:
twuster
Date:
2015-09-15
Revision:
0:8c7c6ac65e1a
Child:
1:bce67ae4dbab

File content as of revision 0:8c7c6ac65e1a:

#include "mbed.h"

DigitalOut myled(LED1);

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