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

Hi @me-no-dev , are you planning to update this library? There are problems with it, sometimes ECP32 reboots itself upon requests, most often it happens for some reason from Android...

Board: XIAO ESP32C3 https://github.com/espressif/arduino-esp32 3.0.0-alpha3 Arduino IDE 2.3.2 d:\Arduino\Sketchbook\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp: In function 'bool getMD5(uint8_t*, uint16_t, char*)': d:\Arduino\Sketchbook\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp:74:3: error: 'mbedtls_md5_starts_ret' was not declared in this scope; did you mean 'mbedtls_md5_starts'? 74 |...

### Problem `AsyncWebSocketControl` packets were being sent more than once by `AsyncWebSocketClient::_runQueue()`. This blocks sending queued packets and eventually trigger `ERROR: Too many messages queued` serial message. This PR adds...

EDIT: Already found the problem. Added a PR with the full description and solution https://github.com/me-no-dev/ESPAsyncWebServer/pull/1390 --- I think it's an omission here https://github.com/me-no-dev/ESPAsyncWebServer/blob/f71e3d427b5be9791a8a2c93cf8079792c3a9a26/src/AsyncWebSocket.cpp#L527 I believe it should do the same...

I am using Node.js [eventsource](https://www.npmjs.com/package/eventsource) with the `AsyncEventSource` plugin. This works most of the time, but it some cases (mostly after doing a heavy POST request with some ArduinoJson), the...

With socket it is possible to send messages in a very high frequency. Consequently the message queue gets exhausted very fast. General this is no problem when using availableForWrite. ```c++...

I open from the Example menubar the CaptivePortal sample and compile it. It throws these error: c:\Users\Patri\OneDrive\Dokumente\Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp: In function 'bool getMD5(uint8_t*, uint16_t, char*)': c:\Users\Patri\OneDrive\Dokumente\Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp:74:3: error: 'mbedtls_md5_starts_ret' was not declared in...

Is there any solution to support hosting files from an sd card using sd_fat library ? in request->send first parameter is fs::FS or File but not FsFile which is used...

Hello, The server run also Modbus RTU transactions as client. Sometimes I have an error: the modbus partner doesn't respond in time. Sometimes, there is transaction error: it's like the...

So that we can use this to implement RESTful apis