Replies: 1 comment 6 replies
-
It's your device WiFi problem. https://github.com/mobizt/FirebaseClient/blob/main/FAQ.md I can't go in deep of your third-party lib but I'm pretty sure that it breaks the WiFi. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I previously used FirebaseESP32.h but I'm trying to use the new FirebaseClient. I'm trying to push value into realtime data base and I want it to continuously update the value. I managed to get it working with the old library from following video tutorial but not with the new library on my own.
I'm facing the problem where its not pushing any value. Is it because of this? Originally it uses int " Database.push(aClient, "/test/int", 12345, asyncCB);" but I change it to double "Database.push(aClient, "/DHT11/Temperature", tempVal, asyncCB);" Can you help me find where is the problem? Thank you.
Beta Was this translation helpful? Give feedback.
All reactions