Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface HTTPServer mbed-rpc mbed-rtos mbed
main.cpp
- Committer:
- leihen
- Date:
- 2013-06-22
- Revision:
- 0:28a67716dfec
- Child:
- 1:6cbd17e628f1
File content as of revision 0:28a67716dfec:
#include "mbed.h"
#include "HTTPServer.h"
#include "FsHandler.h"
#include "LocalFileSystem.h"
DigitalOut myled(LED1);
Serial pc(USBTX, USBRX, "pc");
HTTPServer svr;
LocalFileSystem local("local");
int main() {
pc.baud(460800);
HTTPFsRequestHandler::mount("/local/", "/");
svr.addHandler<HTTPFsRequestHandler>("/");
if (!svr.start()) {
error("Server not starting !");
exit(0);
}
while(1) {
svr.poll();
myled = 1;
wait(0.2);
myled = 0;
wait(0.2);
}
}