Removed unnecessary invocation of Ethernet.maintain()

Since this example utilizes a statically assigned IP address, it is not necessary to call Ethernet.maintain().
This commit is contained in:
Michael Amie 2016-01-11 00:04:47 -08:00
parent 870171a69e
commit e6f85b7058
1 changed files with 0 additions and 1 deletions

View File

@ -97,7 +97,6 @@ void loop() {
// close the connection:
client.stop();
Serial.println("client disconnected");
Ethernet.maintain();
}
}