8000 Logging IP on startup in example sketch · omega2amm/esp32_https_server@68450b2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 68450b2

Browse files
committed
Logging IP on startup in example sketch
1 parent 152bb3f commit 68450b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

https_server.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ void setup()
193193
Serial.print(".");
194194
delay(100);
195195
}
196-
Serial.println(" connected.");
196+
Serial.print(" connected. IP=");
197+
Serial.println(WiFi.localIP());
197198

198199
// Setup the server as a separate task.
199200
//

0 commit comments

Comments
 (0)
0