Akifumi Takahashi / Mbed 2 deprecated httpserversample

Dependencies:   mbed mbed-rtos EthernetInterface HTTP_SERVER

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "HTTP_SERVER.h"
00003 int main()
00004 {
00005     HttpServer httpsvr;
00006     if(httpsvr.init()){
00007         if(httpsvr.run() == 0)
00008             printf("end\r\n");
00009         else
00010             printf("error end\r\n");
00011     }
00012     return 0;
00013 }