Skip to content

Commit 5ff0e20

Browse files
committed
Correct mistakes on https and client var.
1 parent d215f57 commit 5ff0e20

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/ESP8266HTTPClient/examples/PostHttpsClient/PostHttpsClient.ino

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ const uint8_t fingerprint[20] = {0xbb, 0x88, 0x7f, 0x7c, 0x77, 0xc2, 0x59, 0x97,
1414
const char* URL = "https://www.reseau-astuce.fr/fr/horaires-a-larret/28/StopTimeTable/NextDeparture";
1515
const char* REQUEST = "destinations=%7B%221%22%3A%22Technop%C3%B4le+SAINT-ETIENNE-DU-ROUVRAY%22%7D&stopId=102154&lineId=175&sens=1";
1616

17-
const char* WIFI_SSID = "myWifiSSID";
18-
const char* WIFI_PWD = "myWifiPassword";
17+
const char* WIFI_SSID = "AirPort Extreme";
18+
const char* WIFI_PWD = "3saih3x8";
1919

2020
ESP8266WiFiMulti WiFiMulti;
21-
HTTPClient https;
2221

2322

2423

@@ -83,4 +82,5 @@ void loop() {
8382
Serial.println("[HTTPS] Unable to connect");
8483
}
8584
}
85+
delay(10000);
8686
}

0 commit comments

Comments
 (0)