fork

Dependencies:   mbed

Fork of mbed_blinky by Mbed

main.cpp

Committer:
gorazdko
Date:
2018-01-19
Revision:
20:fcd05b4ea914
Parent:
4:81cea7a352b0

File content as of revision 20:fcd05b4ea914:

#include "mbed.h"

DigitalOut myled(LED1);

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