Chris Styles
/
WorkingHTTPServer
HTTP Server based on Rolf Meyers work
main.cpp
- Committer:
- chris
- Date:
- 2010-05-13
- Revision:
- 0:27247b1ce338
File content as of revision 0:27247b1ce338:
#include "mbed.h" #include "HTTPServer.h" #include "HTTPRPC.h" #include "HTTPFS.h" HTTPServer http; DigitalOut led1(LED1, "led1"); DigitalOut led2(LED2, "led2"); DigitalOut led3(LED3, "led3"); DigitalOut led4(LED4, "led4"); LocalFileSystem local("local"); int main(void) { Base::add_rpc_class<AnalogIn>(); Base::add_rpc_class<AnalogOut>(); Base::add_rpc_class<DigitalIn>(); Base::add_rpc_class<DigitalOut>(); Base::add_rpc_class<PwmOut>(); Base::add_rpc_class<Timer>(); Base::add_rpc_class<SPI>(); Base::add_rpc_class<BusOut>(); Base::add_rpc_class<BusIn>(); http.addHandler(new HTTPRPC()); http.addHandler(new HTTPFileSystemHandler("/", "/local/")); http.bind(); while(1) { http.poll(); } }