fix return local ip in ethernet client

This commit is contained in:
technyon
2022-04-29 21:30:33 +02:00
parent 5b12e54be0
commit 6bd6900198

View File

@@ -28,7 +28,7 @@ size_t W5500EthClient::write(const char *buffer, size_t size)
IPAddress W5500EthClient::localIP()
{
return IPAddress(0,0,0,0);
return Ethernet.localIP();
}
void W5500EthClient::stop()