Skip to content

Commit 4974e2f

Browse files
committed
WiFiPing: add info about minimum required firmware version
1 parent fec1109 commit 4974e2f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: libraries/WiFiS3/examples/WiFiPing/WiFiPing.ino

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using the WiFi module. By default the attempt is performed 5 times, but can
66
be changed to max. 255
77
8-
It requires the latest USB Wifi bridge firmware level and WiFiS3 library.
8+
It requires at least version 0.5.0 of USB Wifi bridge firmware and WiFiS3 library.
99
1010
This example is written for a network using WPA encryption. For
1111
WEP or WPA, change the WiFi.begin() call accordingly.
@@ -81,6 +81,7 @@ void loop() {
8181
}
8282
else {
8383
Serial.println("Timeout on IP!");
84+
Serial.println("Make sure your WiFi firmware version is greater than 0.5.0");
8485
}
8586

8687
// Ping Host
@@ -98,6 +99,7 @@ void loop() {
9899
}
99100
else {
100101
Serial.println("Timeout on host!");
102+
Serial.println("Make sure your WiFi firmware version is greater than 0.5.0");
101103
}
102104

103105
Serial.println();

0 commit comments

Comments
 (0)