Sumejja Porca Elma Gazetic

Dependencies:   mbed

main.cpp

Committer:
tim003
Date:
2014-03-03
Revision:
0:c4af5c4c483c
Child:
1:153b7d14f473

File content as of revision 0:c4af5c4c483c:

#include "mbed.h"

DigitalOut myled(LED1);

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