We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ebc7c9 commit 34571a0Copy full SHA for 34571a0
libraries/ESP8266WiFi/examples/WiFiClientMin/WiFiClientMin.ino
@@ -37,8 +37,8 @@ void loop() {
37
const uint16_t port = 80;
38
const char * host = "192.168.1.1"; // ip or dns
39
40
-
41
+
42
Serial.print("connecting to ");
43
Serial.println(host);
44
@@ -47,8 +47,8 @@ void loop() {
47
48
if (!client.connect(host, port)) {
49
Serial.println("connection failed");
50
- Serial.println("wait 5 sec...");
51
- delay(5000);
+ Serial.println("wait 5 sec...");
+ delay(5000);
52
return;
53
}
54
@@ -61,8 +61,8 @@ void loop() {
61
62
Serial.println("closing connection");
63
client.stop();
64
65
Serial.println("wait 5 sec...");
66
67
68
0 commit comments