ESPAsyncWebServer icon indicating copy to clipboard operation
ESPAsyncWebServer copied to clipboard

Async Web Server for ESP8266 and ESP32

Results 181 ESPAsyncWebServer issues
Sort by recently updated
recently updated
newest added

During compilation for ESP32 C3-based boards (ESP32C3, Adafruit QT Py ESP32-C3, M5Stack Stamp C3) , the following error is displayed: C:\Users\toto\Documents\Arduino\libraries\ESPAsyncWebServer-master\src\AsyncWebSocket.cpp: In member function 'IPAddress AsyncWebSocketClient::remoteIP()': C:\Users\toto\Documents\Arduino\libraries\ESPAsyncWebServer-master\src\AsyncWebSocket.cpp:832:28: error: call of...

Hi guys, anyone can help me with my code? In my program, i wrote a routine inside a route block, that use "for function" to automate the coding process and...

I'm doing some tests with an esp32 board(Doit Devkit V1) and when I try to dowload files with size up to 5.5Kb everything is ok. But when the file has...

Hi, when using an AsyncEventSource instance on ESP32 platform, multiple issues arise due to multi-threaded access to the AsyncTCP event queue (_async_queue), the AsyncEventSource internal _messageQueue and locked usage of...

Compile error on ESP32-C3 for even simplest example [simple_server](https://github.com/me-no-dev/ESPAsyncWebServer/tree/master/examples/simple_server) ``` /home/kh/Arduino/libraries/ESPAsyncWebServer-master/src/AsyncWebSocket.cpp: In member function 'IPAddress AsyncWebSocketClient::remoteIP()': /home/kh/Arduino/libraries/ESPAsyncWebServer-master/src/AsyncWebSocket.cpp:843:28: error: call of overloaded 'IPAddress(unsigned int)' is ambiguous return IPAddress(0U); ^ ```

I've been using ESPAsyncWebServer and the sister AsyncTCP quite happily for a number of years now, first ESP8266 and now exclusively all variants of the ESP32. No issues. It's perfect....

AsyncAbstractResponse::_fillBufferAndProcessTemplates() 1.) A parameter is enclosed by the % delimiter. 2.) Parameter names can have a maximum of 32 characters. 3.) Parameter names cannot contain illegal characters. (\ .:{}',;"/) A...

hi all, a lot of issues without reply, no update since several years .. if there is no more support, what would be the best replacement lib please ? thanks,...

In this example: String processor(const String& var) { if(var == "HELLO_FROM_TEMPLATE"){ String inputMessage = request->getParam("f")->value(); //HOW IS POSSIBLE? return F("Hello world!"+inputMessage ); } return String(); } request->send(SPIFFS, "/index.htm", String(), false,...

Code for favicon.ico request: serverAsync.on("/favicon.ico", HTTP_GET, [](AsyncWebServerRequest *request){ request->send(LittleFS, "/favicon.ico", "image/x-icon"); }); If LAN address is used or WAN address is used Favicon.ico is displayed in Browser. If No-ip.com; masked,...