first_v1

main.cpp

Committer:
jphuc96
Date:
2017-09-14
Revision:
0:b564ed6f85f5

File content as of revision 0:b564ed6f85f5:

#include "mbed.h"
#include "EthernetInterface.h"
//#include "HTTPServer.h"
//#include "mbed_rpc.h"

DigitalOut myled(LED1);

int main() {  
    while(1) {
        myled = 1; // LED is ON
        wait(0.2); // 200 ms
        myled = 0; // LED is OFF
        wait(1.0); // 1 sec
    }
}