File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Update/examples/OTAWebUpdater
WebServer/examples/WebUpdate Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 7
7
8
8
#define SSID_FORMAT " ESP32-%06lX" // 12 chars total
9
9
// #define PASSWORD "test123456" // generate if remarked
10
- const char * authUser = " admin" ;
11
- const char * authPass = " admin" ;
10
+
11
+ // Set the username and password for firmware upload
12
+ const char * authUser = " ........" ;
13
+ const char * authPass = " ........" ;
12
14
13
15
WebServer server (80 );
14
16
Ticker tkSecond;
Original file line number Diff line number Diff line change 11
11
const char *host = " esp32-webupdate" ;
12
12
const char *ssid = " ........" ;
13
13
const char *password = " ........" ;
14
- const char * authUser = " admin" ;
15
- const char * authPass = " admin" ;
14
+
15
+ // Set the username and password for firmware upload
16
+ const char * authUser = " ........" ;
17
+ const char * authPass = " ........" ;
16
18
17
19
WebServer server (80 );
18
20
const char *serverIndex =
You can’t perform that action at this time.
0 commit comments