Skip to content

Commit

Permalink
WiFiPing: add info about minimum required firmware version
Browse files Browse the repository at this point in the history
  • Loading branch information
pennam committed Nov 27, 2024
1 parent fec1109 commit 4974e2f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libraries/WiFiS3/examples/WiFiPing/WiFiPing.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using the WiFi module. By default the attempt is performed 5 times, but can
be changed to max. 255
It requires the latest USB Wifi bridge firmware level and WiFiS3 library.
It requires at least version 0.5.0 of USB Wifi bridge firmware and WiFiS3 library.
This example is written for a network using WPA encryption. For
WEP or WPA, change the WiFi.begin() call accordingly.
Expand Down Expand Up @@ -81,6 +81,7 @@ void loop() {
}
else {
Serial.println("Timeout on IP!");
Serial.println("Make sure your WiFi firmware version is greater than 0.5.0");
}

// Ping Host
Expand All @@ -98,6 +99,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();
Expand Down

0 comments on commit 4974e2f

Please sign in to comment.