Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #6 from bram2202/develop
Browse files Browse the repository at this point in the history
Fix for IPaddress string error
  • Loading branch information
bram2202 authored Jun 16, 2021
2 parents 9c4288a + d822c8e commit 58ac0e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WifiConnector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void WifiConnector::start()
hasWIFI = true;

logger.info("Connected!");
logger.debug("IP: " + WiFi.localIP());
logger.debug("IP: " + WiFi.localIP().toString());
}

// If wifi connection is lost, try to reconnect
Expand Down

0 comments on commit 58ac0e8

Please sign in to comment.