8000 lwIP on ethernet: examples by d-a-v · Pull Request #8395 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

lwIP on ethernet: examples #8395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Jun 2, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into ethexamples
  • Loading branch information
d-a-v committed Mar 4, 2022
commit ad179df0929933c3d9dfd0fd445c6252f2b1548d
5 changes: 4 additions & 1 deletion libraries/lwIP_Ethernet/examples/EthClient/EthClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,8 @@ void loop() {
Serial.println("closing connection");
client.stop();

delay(600000); // execute once every 10 minutes, don't flood remote service
if (wait) {
delay(300000); // execute once every 5 minutes, don't flood remote service
}
wait = true;
}
You are viewing a condensed version of this merge commit. You can view the full changes here.
0