ESPAsyncWebServer
ESPAsyncWebServer copied to clipboard
Async Web Server for ESP8266 and ESP32
I am trying to implement the code in the example ESP_AsyncFSBrowser. I am using the code exactly as in the example except for changing the SSID and password. When opening...
Im using a Basic Webserver like this: ``` #include #include #include #include AsyncWebServer server(80); const char* ssid = "ssid"; const char* password = "********"; void setup() { Serial.begin(115200); WiFi.mode(WIFI_STA); WiFi.begin(ssid,...
FYI, I have [opened a PR](https://github.com/esphome/ESPAsyncWebServer/pull/25) in the [fork maintained by ESPHome](https://github.com/esphome/ESPAsyncWebServer/)
PLATFORM: Espressif 32 (5.2.0) > NodeMCU-32S HARDWARE: ESP32 240MHz, 320KB RAM, 4MB Flash DEBUG: Current (cmsis-dap) External (cmsis-dap, esp-bridge, esp-prog, iot-bus-jtag, jlink, minimodule, olimex-arm-usb-ocd, olimex-arm-usb-ocd-h, olimex-arm-usb-tiny-h, olimex-jtag-tiny, tumpa) PACKAGES: -...
Trying to add the following HTML breaks because it picks up the width % as a template. Is there any way to make it keep the % as text like...
Hello, i need to forward my Webserver with websocket connection on my router. Im using a Fritzbox 7590 AX. If i forward port 80 from example ESP_AsyncFSBrowser.ino where websockets is...
Hello everyone, I have written a Rest API for an OTA update. Basically, this works great, but as soon as I execute the request#send method during the upload process (several...
I have to receive a lot of data socket but when received data increase to a particular MB qty yields an error at lilygo then reset itself. I wondered if...
Hello,this may not be an issue but I just wanted to make sure I am not doing something incorrect. I am trying to use this web server along with NimBLE...
multiple request on file'S cause: E (47645) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time: E (47645) task_wdt: - async_tcp (CPU 0/1) E...