ESPAsyncWiFiManager
ESPAsyncWiFiManager copied to clipboard
Port WiFiManager to ESP Async Server
ESP32 IDF3.2 PlatformIO Version 1.8 Please find the logs as below *WM: settings invalidated *WM: THIS MAY CAUSE AP NOT TO START UP PROPERLY. YOU NEED TO COMMENT IT OUT...
Hi, I was wondering if it would be possible to feed AsyncWiFiManager an mDNS server rather than a DNS server so that I can name the host to make it...
Hi. Not really sure why this is happening but I think it's affecting my ability to connect to the AP. Running as ESP32 Sparkfun Thingy. Any suggestions for a fix?...
I am currently shipping a product that used this Async WiFi Manager. It is working great on 99% of the devices, but I have a couple of people who try...
I include: `#include #include AsyncWebServer server(80); DNSServer dns; ` In setup() I have the following code: ` AsyncWiFiManager wifiManager(&server, &dns); if (!wifiManager.autoConnect("TEST-AP", "test-ap")) { BroadcastMessageLn("Failed to connect and hit timeout");...
Is there a design goal that precludes taking advantage of the built-in template engine in ESPAsyncWebServer to store and server the captive portal template content from SPIFFS? I ask this...
After connected to the selected wifi with dhcp, it is hard to get the ip of the device I'm thinking on send a mail or similar to announce the setted...
Hi all, I see that this has been brought up before, #26 and apparently fixed, but I am getting the same error if I try and compile ESPAsyncWiFiManager.h in PlatformIO....
Hello I've noticed that sometimes i need the plant to work even before i set an access point to connect to it, As a normal operation. So, And because this...
I have hard time setting up this library. I'm using Wemos D1 mini and PlatformIO as IDE. My code is very simple (based on one of Your examples): ``` #include...