tags:

views:

704

answers:

2

I'm trying to get my arduino with ethernet shield set up as a server to understand GET and POST requests. I found this, and could modify it to meet my needs, but was wondering if something already exists in C++ that is extremely lightweight and might already be commonly used for arduinos with ethernet shields.

A: 

I've previously used the Abyss Web Server for embedding a small, lightweight C++ web server into Linux programs. Hopefully this will have a low enough footprint for you.

Mike McQuaid
I'd need access to the source code to trim out what I want (my entire compiled program needs to be under 30K)
bpowah
+3  A: 

I've used Webduino with my Arduino ethernet shield. It handles GET and POST requests, and reads query string parameters.

Martin Owen
You are a saint among men. Thanks.
bpowah
I'm the developer of Webduino... hope it worked well for you!
Ben Combee