khoih-prog / ESPAsync_WiFiManager_Lite

Library using AsyncWebServer to configure MultiWiFi/Credentials at runtime for ESP32 (including ESP32-S2 and ESP32-C3) and ESP8266 boards. You can also specify DHCP HostName, static AP and STA IP. Use much less memory compared to full-fledge WiFiManager. Config Portal will be auto-adjusted to match the number of dynamic custom parameters. Optional default Credentials to be autoloaded into Config Portal to use or change instead of manually input. Credentials are saved in LittleFS, SPIFFS or EEPROM. New powerful-yet-simple-to-use feature to enable adding dynamic custom parameters from sketch and input using the same Config Portal. Double or MultiDetectDetector as well as Virtual Switches feature permits entering Config Portal as requested.
MIT License
57 stars 14 forks source link

The Config Portal does not automatically open after connecting to the access point #12

Closed benpeart closed 2 years ago

benpeart commented 2 years ago

With ESPAsync_WiFiManager, after connecting to the ESP32 AP - my browser would automatically open the Configuration Portal page. After converting to ESPAsync_WiFiManager_Lite, this behavior no longer works and I have to manually open my browser and type in the default IP address (192.168.4.1). I'm not sure how this worked before but I did notice I no longer need to pass an AsyncDNSServer to the ESPAsync_WiFiManager_Lite constructer and wondered if that was part of the reason. Is there a way to get this convenience feature to work with the _Lite version?

khoih-prog commented 2 years ago

That's why it's called Lite, without the complex features, such as Captive Config.Portal, DNS, etc.

This is also intentional to simplify the code. There is no plan to add more features, unless many more requests to justify the addition.

Thanks for your feedback,