TinyWebServer
TinyWebServer copied to clipboard
Small web server for Arduino, fits in 10KB ROM, less than 512 bytes RAM
this library is compatible ? my includes stack is: ``` #include #include #include #include ``` it give me errors: /home/antonio/Arduino/libraries/TinyWebServer/TinyWebServer.h:89:31: error: 'Client' has not been declared static void send_error_code(Client& client,...
Any chance you'll be updating this to allow the use of wifi instead of just ethernet? Thanks, Shawn
Using POST request from httpclient Apache (my test client is [openremote controller](http://www.openremote.com)) I've found that their http 1.1 implementation ask for a "100-Continue" return code before sending the body request....
How can I send header: Access-Control-Allow-Origin: \* ?
When I click on the lamp off the browser of the following message: Could not find file: BLINKLED Already compiled the IDE 1.04,1.05,1.6.3. Also did inclusion of extra lines of...
Would it be possible to get an update to use this library? I can't get it to work with latest Arduino IDE. Also would it be difficult to use it...
I believe there is an error where users request the server root (without a page ou another element in the URL). The server sends page as text/plain> and not text/html...
@ovidiucp, first of all I love this TinyWebServer so far it's exactly what I was looking for to be able to upload files to my Arduino remotely. I will do...
Can i put some arduino variables into web pages stored in SD card?
The current code doesn't support parsing the URL query string of a GET request and returning parameter values. Some problems arise here because the URL GET request can be up...