Nicolae Marton / Mbed 2 deprecated TDP3_MovementControl

Dependencies:   mbed

main.cpp

Committer:
quickeman
Date:
2018-10-15
Revision:
5:56de8fa841e2
Parent:
3:c9e7b856026c
Child:
6:b476699ac7d4

File content as of revision 5:56de8fa841e2:

#include "mbed.h"
//hello guys, this is a test
DigitalOut myled(LED1);

// This is the main() function
// hello
int main() {
    while(1) {
        myled = 1;
        wait(10);
        myled = 0;
        wait(100);
    }
}