Skip to content

Commit

Permalink
Make IP clickable via serial monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
troyhacks committed Nov 23, 2024
1 parent 9c203f8 commit 2ba53f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wled00/wled.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ void WLED::handleConnection()
initAP();
}
} else if (!interfacesInited) { //newly connected
USER_PRINT(F("Connected! IP address: "));
USER_PRINT(F("Connected! IP address: http://"));
if (Network.isEthernet()) {
#if ESP32
USER_PRINT(ETH.localIP());
Expand Down

1 comment on commit 2ba53f9

@softhack007
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Super idea. I'll grab that one for mdev 😀

Please sign in to comment.