hello

Dependencies:   mbed

main.cpp

Committer:
gaeekim
Date:
2018-09-10
Revision:
1:9f92fcbf93c3
Parent:
0:0a4c8972f2b4

File content as of revision 1:9f92fcbf93c3:

#include "mbed.h"

DigitalOut myled(LED1);

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