Skip to content

examples: uno r4 wifi fix print about required firmware version #402

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 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion libraries/Preferences/examples/TypesCheck/TypesCheck.ino
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ int testString() {
value = prefs.getString("string", value);
if (strcmp(data, value.c_str()) != 0) {
Serial.println("getString Error");
Serial.println("Make sure your WiFi firmware version is greater than 0.5.0");
Serial.println("Make sure your WiFi firmware version is at least 0.5.0");
return 0;
} else {
Serial.println("getString OK");
Expand Down
4 changes: 2 additions & 2 deletions libraries/WiFiS3/examples/WiFiPing/WiFiPing.ino
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void loop() {
}
else {
Serial.println("Timeout on IP!");
Serial.println("Make sure your WiFi firmware version is greater than 0.5.0");
Serial.println("Make sure your WiFi firmware version is at least 0.5.0");
}

// Ping Host
Expand All @@ -92,7 +92,7 @@ void loop() {
}
else {
Serial.println("Timeout on host!");
Serial.println("Make sure your WiFi firmware version is greater than 0.5.0");
Serial.println("Make sure your WiFi firmware version is at least 0.5.0");
}

Serial.println();
Expand Down
2 changes: 1 addition & 1 deletion libraries/WiFiS3/examples/WiFiTime/WiFiTime.ino
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void loop() {
}
else {
Serial.println("Error during reading epoch time.");
Serial.println("Make sure your WiFi firmware version is greater than 0.5.0");
Serial.println("Make sure your WiFi firmware version is at least 0.5.0");
}

Serial.println();
Expand Down
Loading