Webduino
Webduino copied to clipboard
Arduino WebServer library
- This library in Web Registry: http://platformio.org/#!/lib/show/5/Webduino - Specification: [PlatformIO Library Manager](http://docs.platformio.org/en/latest/librarymanager/index.html) - Integration: [IDE Integration](http://docs.platformio.org/en/latest/ide.html)
This library needs to be updated to the Arduino IDE 1.5: Library specification. This would make any updates and bug fixes available to the user community via the Arduino Library...
The `read()` method fetches request content one byte at a time. This introduces quite a significant overhead. To make it more efficient, the data can be read as a chunk...
int type is signed 16bit. When "content-length" is greater than 32767 overflow occurs!
I forked your Webduino library and managed to get it working with a few changes for the WiFi shield here: https://github.com/acarlton/Webduino/tree/wifi Just wanted to say great work. Didn't know how...
Hi, Using Webduino for years now without issue, but there was one UNO with hw problem and was replaced by a new one with W5500 ethernet shield, and Webduino does...
Hi again my friend.like we talked on email i put the problems here for arduino ide 1.6.5 If you can make some modification for it will be greate. Many thanks...
If I attach more than 8 commands like this: webserver.addCommand("example", &exampleCmd); I get an error page with the content "EPIC FAIL" when I call one of the excess commands.
The wiki says that we can't use SD with the Ethernet without disabling one and enabling the second i.e: https://github.com/sirleech/Webduino/wiki/Webduino-webserver-hanging-after-a-short-period---fixed-by-disabling-the-SD-card Another question at Stack Exchange and the answer was nearly...
I added in support for Adafruit's CC3000 breakout board.