-
I followed the way to save array to firebase like #222 but I got error, I have to pass 5 parameters to setArray function my code:
error message: ...arduinoIDE-unsaved202355-18380-linrqh.vzrcd\GettingStartedProject\GettingStartedProject.ino:62:47: note: candidate expects 5 arguments, 3 provided |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For better explanation, I delete the last post and describe it here. You should call The functions API like Please follow the library examples and functions documentation for proper usage. |
Beta Was this translation helpful? Give feedback.
For better explanation, I delete the last post and describe it here.
You should call
Firebase.xxx
as in #222 instead ofFirebase.RTDB.xxx
.The functions API like
Firebase.RTDB.xxx
is for the Firebase-ESP-Client library only that supports more Firebase services and provides the nested public class to access the services e.g.,Firebase.RTDB.xxx
, andFirebase.CFS.xxx
. And almost parameters that pass to those functions are pointer.Please follow the library examples and functions documentation for proper usage.