asdf

Dependencies:   mbed

Fork of XbeeHomeAutomation by Chris Wilson

main.cpp

Committer:
mmujica6
Date:
2013-11-26
Revision:
1:ecbee6eb3020
Parent:
0:c498b8bcfc46
Child:
2:62271bcaa4a7

File content as of revision 1:ecbee6eb3020:

#include "mbed.h"

DigitalOut myled(LED1);
DigitalOut myled2(LED2);
int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}