Hoang Phuc Nguyen / Mbed OS STM32mbed_RPC_HTTP
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "EthernetInterface.h"
00003 //#include "HTTPServer.h"
00004 //#include "mbed_rpc.h"
00005 
00006 DigitalOut myled(LED1);
00007 
00008 int main() {  
00009     while(1) {
00010         myled = 1; // LED is ON
00011         wait(0.2); // 200 ms
00012         myled = 0; // LED is OFF
00013         wait(1.0); // 1 sec
00014     }
00015 }