We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a CaptivePortal to APmode? When connecting to ApMode it would redirect you to the 192.168.4.1 directly, without the user input needed
https://github.com/espressif/arduino-esp32/blob/master/libraries/DNSServer/examples/CaptivePortal/CaptivePortal.ino
The text was updated successfully, but these errors were encountered:
Some sample code
https://github.com/espressif/arduino-esp32/blob/master/libraries/DNSServer/examples/CaptivePortal/CaptivePortal.ino #include <DNSServer.h> DNSServer dnsServer; ? IPAddress apIP(192, 168, 1, 1); ? WiFi.softAPConfig(apIP, apIP, IPAddress(255, 255, 255, 0)); dnsServer.start(53, "", apIP); // if DNSServer is started with "" for domain name, it will reply with provided IP to all DNS request dnsServer.processNextRequest();
Sorry, something went wrong.
Added it, but it only works for HTTP not HTTPS connections
No branches or pull requests
Add a CaptivePortal to APmode?
When connecting to ApMode it would redirect you to the 192.168.4.1 directly, without the user input needed
https://github.com/espressif/arduino-esp32/blob/master/libraries/DNSServer/examples/CaptivePortal/CaptivePortal.ino
The text was updated successfully, but these errors were encountered: