Skip to content

Commit f47e12a

Browse files
committed
Fix nina-fw minimum required version for WiFiAdvancedChatServer
1 parent ae63eab commit f47e12a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/WiFiAdvancedChatServer/WiFiAdvancedChatServer.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ void setup() {
4545
Serial.println("Please upgrade the firmware");
4646
}
4747

48-
if (fv < "1.5.1") {
49-
Serial.println("Advanced WiFi Chat Server requires firmware version 1.5.1 or higher.");
48+
if (fv < "1.6.0") {
49+
Serial.println("Advanced WiFi Chat Server requires firmware version 1.6.0 or higher.");
5050
// don't continue
5151
while (true);
5252
}

0 commit comments

Comments
 (0)