testing removal

main.cpp

Committer:
karen801
Date:
2018-05-29
Revision:
1:398fa178da76
Parent:
0:c16eb2b17039
Child:
2:2983a1db79c8

File content as of revision 1:398fa178da76:

#include "mbed.h"

DigitalOut led1(LED1);

// main() runs in its own thread in the OS
int main() {
    while (true) {
        led1 = !led1;
        wait(0.5);
        //testing pushes
    }
}