Skip to content

Commit 34571a0

Browse files
committed
typo
1 parent 2ebc7c9 commit 34571a0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

libraries/ESP8266WiFi/examples/WiFiClientMin/WiFiClientMin.ino

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ void loop() {
3737
const uint16_t port = 80;
3838
const char * host = "192.168.1.1"; // ip or dns
3939

40-
41-
40+
41+
4242
Serial.print("connecting to ");
4343
Serial.println(host);
4444

@@ -47,8 +47,8 @@ void loop() {
4747

4848
if (!client.connect(host, port)) {
4949
Serial.println("connection failed");
50-
Serial.println("wait 5 sec...");
51-
delay(5000);
50+
Serial.println("wait 5 sec...");
51+
delay(5000);
5252
return;
5353
}
5454

@@ -61,8 +61,8 @@ void loop() {
6161

6262
Serial.println("closing connection");
6363
client.stop();
64-
64+
6565
Serial.println("wait 5 sec...");
66-
delay(5000);
66+
delay(5000);
6767
}
6868

0 commit comments

Comments
 (0)