ESPAsyncWebServer
ESPAsyncWebServer copied to clipboard
Async Web Server for ESP8266 and ESP32
Hello @me-no-dev 👋 I hope this message finds you well. I am currently working on a project that involves using the ESPAsyncWebServer library with SSL for secure communication. However, I...
I'm writing a server that handles websocket connections using ESPAsyncWebserver and ArduinoJSON. As part of that, I was testing to see how many messages it could handle and I was...
at line no. 832 IPAddress function argument data type typecasting to uint32_t
Hi, I am using Visual Studio code and added last library to my project. platform.ini: `env:esp32dev] platform = espressif32 board = esp32dev framework = arduino lib_deps = me-no-dev/ESP Async WebServer@^1.2.3...
``` void AsyncWebSocket::textAll(const char * message, size_t len){ AsyncWebSocketMessageBuffer * WSBuffer = makeBuffer((uint8_t *)message, len); textAll(WSBuffer); } void AsyncWebSocket::textAll(AsyncWebSocketMessageBuffer * buffer){ if (!buffer) return; buffer->lock(); for(const auto& c: _clients){ if(c->status()...
Hi, i cant serve Files like "index.html" as Hostname. Only as IP and full name of File "index.html" or "index.htm" my esp32 matches Hostname "Switcher" and in Network "switcher.fritz.box". I...
In my ESP32 Arduino application in my `loop()` I have a lot of fast routines (i.e. motors, LEDs, remote IR, etc...). I discovered that when all this stuff is running...
if I make "/system" page and "/system/test" page only "/system" page is working when using ESP8266Webserver library it was working with no problem. ``` server->on("/system", HTTP_ANY, [](AsyncWebServerRequest* request) { request->send(200,...
When will HTTPs be supported as its becoming an issue for some webserver users. There is a ASYNC_TCP_SSL_ENABLED switch supported but as reported the underlying code does not compile if...
This fixes compilation on the latest Git version of the Arduino ESP32 core due to API changes in IDF 5.1. Of course, these changes make ESPAsyncWebServer incompatible with prior Arduino...