testing removal

main.cpp

Committer:
karen801
Date:
2018-05-29
Revision:
2:2983a1db79c8
Parent:
1:398fa178da76
Child:
3:685207bb9d83

File content as of revision 2:2983a1db79c8:

#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
        //another comment
    }
}