Arduino standard or shared library for parsing HTTP requests?

I am trying to get an Arduino with an Arduino Ethernet Shield configured as a server to understand GET and POST requests. I found a " Well-structured web server " and could modify it to meet my needs, but something already exists in C ++, which is extremely lightweight and maybe already commonly used for Arduinos with Arduinos Ethernet screens?

+4
source share
2 answers

I used Webduino with my Arduino ethernet screen. It processes GET and POST requests and reads the query string parameters.

+6
source

I previously used Abyss Web Server to embed a small, lightweight C ++ web server in Linux programs. I hope this will have a fairly low area for you.

0
source

All Articles