1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-19 09:42:11 +03:00

Fixing bug that made the Ethernet library interfere with pins 8 and 9.

Adding a delay(1) to the WebServer example to work with browsers.
Removing duplicate Print files from Ethernet library.
This commit is contained in:
David A. Mellis
2008-12-14 16:55:23 +00:00
parent 40cbd63fc4
commit 30e40e40ef
4 changed files with 3 additions and 213 deletions

View File

@ -54,6 +54,8 @@ void loop()
}
}
}
// give the web browser time to receive the data
delay(1);
client.stop();
}
}