-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Esp2866 update #24
base: master
Are you sure you want to change the base?
Esp2866 update #24
Conversation
@@ -94,6 +94,8 @@ boolean Exosite::writeRead(const char* writeString, const char* readString, char | |||
client->stop(); | |||
#ifdef SL_DRIVER_VERSION | |||
client->sslConnect(serverName,443); | |||
#if defined(ESP8266) | |||
client->connect(serverName,443); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to fix the hardcoding of the port number. But not in this PR.
Do not Merge this branch with Master! ESP8266 secure connection functionality has been added in PR #25 |
@@ -94,6 +94,8 @@ boolean Exosite::writeRead(const char* writeString, const char* readString, char | |||
client->stop(); | |||
#ifdef SL_DRIVER_VERSION | |||
client->sslConnect(serverName,443); | |||
#if defined(ESP8266) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs to be changed to:
#elif (ESP8266)
No description provided.