Skip to content

Commit 67c9f25

Browse files
committed
fixed little bug
1 parent 435d346 commit 67c9f25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/ArduinoWiFiShield/ArduinoWiFiShield.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void setup() {
2828

2929
void connect() {
3030
Serial.print("checking wifi...");
31-
while (!WiFi.status() != WL_CONNECTED) {
31+
while (WiFi.status() != WL_CONNECTED) {
3232
Serial.print(".");
3333
delay(500);
3434
}

0 commit comments

Comments
 (0)