Nicolae Marton / Mbed 2 deprecated TDP3_MovementControl

Dependencies:   mbed

Committer:
Nicolaemf
Date:
Mon Oct 15 10:05:02 2018 +0000
Revision:
1:9c7329b9c23f
Parent:
0:30183794e491
Child:
2:55e5c2c48913
test change from author;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Nicolaemf 0:30183794e491 1 #include "mbed.h"
Nicolaemf 1:9c7329b9c23f 2 //hello guys, this is a test
Nicolaemf 0:30183794e491 3 DigitalOut myled(LED1);
Nicolaemf 0:30183794e491 4
Nicolaemf 0:30183794e491 5 int main() {
Nicolaemf 0:30183794e491 6 while(1) {
Nicolaemf 0:30183794e491 7 myled = 1;
Nicolaemf 0:30183794e491 8 wait(0.2);
Nicolaemf 0:30183794e491 9 myled = 0;
Nicolaemf 1:9c7329b9c23f 10 wait(100);
Nicolaemf 0:30183794e491 11 }
Nicolaemf 0:30183794e491 12 }