Replies: 1 comment 4 replies
-
You are sign in as anonymous which I'm not recommended, device will create the garbage user in your project and it's not convenient to delete. Library's TCP client can't establish connection to server. The possible causes are no internet access and low memory which cause the SSL handshake failed. You should enable WiFi and SSL debug in IDE to see what's happen. You should check the free heap at any point in your code because it is esp8266 which has limited memory which you should remove unnecessary library e.g. timeclient from your sketch as the configTime function for NTP time request is enough. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Thank you very much for this library.
I think i am on an issue that probably cant be solved. Time for asking you.
I am using and ESP8266 to read some sensor values and set-up a server that i can access through the internet and interact with the ESP8266 (read the current values of the sensors and send commands that forward some IR -signals in the room).
This action takes place on demand when i choose to connect to the device. Meanwhile, while client is not connected, i want to connect to Firebase periodically and send some data values f.e. every 1 hour.
The code i have build does not seem to work for Firebase since i get an error (not connected). The same code does work if i remove all the "server code".
Any idea?
Is that possible to make it work?
Here is my code:
void setup() {
}
void loop() {
}
Beta Was this translation helpful? Give feedback.
All reactions