diff --git a/CHANGELOG.md b/CHANGELOG.md index 315f9cd..fe3e436 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,11 @@ ## Version v18 -- TLS and login credentials support +- MQTT login credentials support - don't check if OTA update is available after deep-sleep - 5 min timeout for wifiManager setup - 7in5 display did not sleep -- Fix OTA update for ESP8266 boardpackage v3.0.0 +- support ESP8266 boardpackage v3.0.0 ## Version v17 diff --git a/ESPEInk_ESP8266.ino b/ESPEInk_ESP8266.ino index 6984070..36a8969 100644 --- a/ESPEInk_ESP8266.ino +++ b/ESPEInk_ESP8266.ino @@ -32,7 +32,8 @@ ESP8266WebServer server(80); IPAddress myIP; // IP address in your local wifi net -WiFiClientSecure espClient; +//WiFiClientSecure espClient; +WiFiClient espClient; PubSubClient mqttClient(espClient); // -----------------------------------------------------------------------------------------------------