tst

Dependencies:   IMUfilter mbed

main.cpp

Committer:
solomonope
Date:
2013-07-25
Revision:
1:a2963b49a5b2
Parent:
0:b449118887b6

File content as of revision 1:a2963b49a5b2:

#include "mbed.h"

DigitalOut myled(LED1);

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