-
Hi, i am going to write for esp32 send basic test da |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
You should try these examples instead. Set your Firestore security rules for public read/write is not recommended. For more secure usage, please learn from this documentation. |
Beta Was this translation helpful? Give feedback.
-
I would like to ask if I want to write esp32 to be able to check the value read from Cloud Firestore, how to write? I try to write and it hangs in the library. |
Beta Was this translation helpful? Give feedback.
Firestore works with document, then you have to get the document and parse for the field value you want.
To update, you need to update the document and marks the field that you want to change the value.
You should understand the concept of Firestore and learn the Firestore REST API documentation that the library works for.
Please try all examples that library provided to see what features that library can do and already implemented.
Library cannot cause your device freezes because all executions that blocks other processes e.g., sending the request and receiving response have time out.
You should debug your code, WiFi, SSL and memory that can cause the issue.
The library also provides the…