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 3981b18 commit 25f3a84Copy full SHA for 25f3a84
libraries/ESP8266HTTPClient/examples/ReuseConnectionV2/ReuseConnectionV2.ino
@@ -47,7 +47,7 @@ void setup() {
47
}
48
49
void loop() {
50
- for(int i = 0; i < 10; i++) {
+ for (int i = 0; i < 10; i++) {
51
Serial.printf("Reuse connection example, GET url for the %d time\n", i + 1);
52
int httpCode = http.GET();
53
if (httpCode > 0) {
@@ -72,5 +72,5 @@ void loop() {
72
http.end();
73
74
Serial.println("Done testing, now wait forever");
75
- for(;;) delay(100); // Wait forever
+ for (;;) delay(100); // Wait forever
76
0 commit comments