mobizt / Firebase-ESP32

[DEPRECATED]🔥 Firebase RTDB Arduino Library for ESP32. The complete, fast, secured and reliable Firebase Arduino client library that supports CRUD (create, read, update, delete) and Stream operations.
MIT License
415 stars 118 forks source link

HELP: How to set datetime on json #88

Closed kenken64 closed 4 years ago

kenken64 commented 4 years ago

FirebaseJson how to set ?

mobizt commented 4 years ago

No datetime data type supported in Firebase RTDB.

It supports primitive types e.g. boolean, number (int, float, double), string, json object and array

You can store it as string or integer of UNIX timestamp.

If you are new to Firebase RTDB please read the google document, open the Firebase console (web) and try with it and see how is it working.

mobizt commented 4 years ago

There are examples which you can try here.

Read the readme doc how to use the library or check the available functions here.