with print

main.cpp

Committer:
GregC
Date:
2016-08-12
Revision:
13:e702b6efb480
Parent:
4:81cea7a352b0

File content as of revision 13:e702b6efb480:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}