Ethernet
localIP()
Ethernet.localIP()
is used to get the IP address of the Ethernet interface as an IPAddress
.
// EXAMPLE
SerialLogHandler logHandler;
void setup() {
// Wait for a USB serial connection for up to 30 seconds
waitFor(Serial.isConnected, 30000);
Log.info("localIP: %s", Ethernet.localIP().toString().c_str());
}