-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ba253f
commit dc2b194
Showing
5 changed files
with
422 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @file basic-usage.cpp | ||
* @brief Short minimal example to make use of the ESP32 Wifi Manager | ||
* @author Martin Verges <[email protected]> | ||
* @copyright 2022 | ||
* @copyright 2022-2025 | ||
* | ||
* Licensed under CC BY-NC-SA 4.0 | ||
* (Attribution-NonCommercial-ShareAlike 4.0 International) | ||
|
@@ -24,6 +24,7 @@ void setup() { | |
WifiManager.startBackgroundTask(); // Run the background task to take care of our Wifi | ||
WifiManager.fallbackToSoftAp(true); // Run a SoftAP if no known AP can be reached | ||
WifiManager.attachWebServer(&webServer); // Attach our API to the Webserver | ||
WifiManager.attachUI(); // Attach the UI to the Webserver | ||
|
||
// Run the Webserver and add your webpages to it | ||
webServer.on("/", HTTP_GET, [](AsyncWebServerRequest *request){ | ||
|
Oops, something went wrong.