HW3- swrd

Dependencies:   PinDetect_KL25Z USBDevice mbed

Fork of octasword by TONY WU

main.cpp

Committer:
triciasfu
Date:
2015-09-16
Revision:
1:bce67ae4dbab
Parent:
0:8c7c6ac65e1a
Child:
2:082bca930f40

File content as of revision 1:bce67ae4dbab:

#include "mbed.h"

DigitalOut myled(LED1);

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