Nicolae Marton / Mbed 2 deprecated TDP3_MovementControl

Dependencies:   mbed

main.cpp

Committer:
Nicolaemf
Date:
2018-10-15
Revision:
6:b476699ac7d4
Parent:
5:56de8fa841e2
Parent:
4:9827e5952222
Child:
11:5e955cf303ab

File content as of revision 6:b476699ac7d4:

#include "mbed.h"
//hello guys, this is a test

//merge conflict for the win

DigitalOut myled(LED1);

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