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

If the Client WIFI is disconnected before browser is closed. Sometimes I get Message "[AsyncTCP.cpp] _poll(): ack timeout 4" and the websocket can close correctly. However sometime nothing happened and...

stale

When a data to be sent needs to be pulled from external MCU, a pointer into related AsyncWebServerRequest can be sent ESP->MCU, and then ESPsend(response); }

stale

hi... i discover arduino a couple years ago (i am not a developer), during this time i figured out i need to write an http server for my project (a...

stale

I publish an issue here : [https://forum.arduino.cc/t/why-i-have-issue-using-arduino-portable-version-with-esp32-boards-only/1013099](url)

stale

When trying to use either FATFS partition option, I am getting "SPIFFS Error: partition size could not be found!"

stale

Hello, I'm using `AsyncJsonResponse * response = new AsyncJsonResponse(true);` to send a very large JSON array response of almost 500k. Smaller responses work, but with 500k I get `pcb is...

stale

I read the [Responses](https://github.com/me-no-dev/ESPAsyncWebServer#responses) chapter in the docs. In a real use-case scenario I'd like to be able to mix three methods of responses: - static: in order to have...

stale

hi, I use const char index_html[] PROGMEM = R"rawliteral( // large HTTP and Javascript functions )rawliteral"; the compiler introduce a lot of garbage in it, anyone that can help me...

stale

* framework-arduinoespressif8266 @ 3.30102.0 (3.1.2) Warnings for reallocating strings, caused by repeated concatenation which can lead to fragmentation are now flagged. The `WebResponses.cpp` file does it here ~~~c++ String AsyncWebServerResponse::_assembleHead(uint8_t...

stale

Hello. In my current project I am bringing up a webserver with multiple locations (`"/"`, `"/settings"`, ...) in STA or AP mode, depending if there are credentials stored. It functions...