Tether
localIP() - Tether
Tether.localIP() is used to get the IP address of the PPP server 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", Tether.localIP().toString().c_str());
}