BinaryOnSeg

Dependencies:   mbed

main.cpp

Committer:
Eduvance
Date:
2014-05-19
Revision:
0:ad2c8f6517f2
Child:
1:725074331ef6

File content as of revision 0:ad2c8f6517f2:

#include "mbed.h"

DigitalOut myled(LED1);

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