ESPAsyncWebServer
ESPAsyncWebServer copied to clipboard
Async Web Server for ESP8266 and ESP32
Hi All, I just installed Arduino IDE in my macOS laptop. I could not see ESPAsyncWebServer library in macOS Arduino IDE for download. Is this normal? Thanks in advance.
Hello, I tried to do a xhtml request ``` function test() { var xhttp = new XMLHttpRequest(); var devicename=""; var j = { "first_name":"binchen", "last_name":"heris", }; xhttp.onreadystatechange = function() {...
Hello, I'm using this awesome library to upload a file on my esp. Update works like a charm but I wanted to add a small check for the payload data...
Hi, currently im trying the ESPAsyncWeServerLib. i have a script here which i would like to convert. under the espwebserver lib there is a member for sendHeader. Which alternative can...
## Outline of problem I am using ESPAsyncWebserver to serve webpages that contain sensor data. I have a single monolithic minified file that contains the HTML + CSS + Javascript...
Sorry for the noob question but I'm desperately searching for the implementation of the AsyncWebServer class. I wanted to take a look on what's going on under the hood. In...
v1.9.1 [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) nodeMCUv2 Hello, if redirect() methods works, I see it fails to work with ESP.restart() or ESP.reset() I want to reboot if requested in the url to reboot, with...
When i works on ArduinoJson 6.19.4 with AsyncCallbackJsonWebHandler looks like ``` AsyncCallbackJsonWebHandler *handler = new AsyncCallbackJsonWebHandler("/msg", [](AsyncWebServerRequest *request, JsonVariant &json) { JsonObject &jsonObj = json.as(); AsyncResponseStream *response = request->beginResponseStream("application/json"); DynamicJsonBuffer...