@@ -71,31 +71,31 @@ class FirebaseArduino {
71
71
* \param path The path to the node you wish to retrieve.
72
72
* \return The float value located at that path. Will only be populated if success() is true.
73
73
*/
74
- int getFloat (const char * path);
74
+ float getFloat (const char * path);
75
75
76
76
/* *
77
77
* Gets the string value located at path.
78
78
* You should check success() after calling.
79
79
* \param path The path to the node you wish to retrieve.
80
80
* \return The string value located at that path. Will only be populated if success() is true.
81
81
*/
82
- int getString (const char * path);
82
+ String getString (const char * path);
83
83
84
84
/* *
85
85
* Gets the boolean value located at path.
86
86
* You should check success() after calling.
87
87
* \param path The path to the node you wish to retrieve.
88
88
* \return The boolean value located at that path. Will only be populated if success() is true.
89
89
*/
90
- int getBool (const char * path);
90
+ bool getBool (const char * path);
91
91
92
92
/* *
93
93
* Gets the json object value located at path.
94
94
* You should check success() after calling.
95
95
* \param path The path to the node you wish to retrieve.
96
96
* \return a FirebaseObject value located at that path. Will only be populated if success() is true.
97
97
*/
98
- FirebaseObjectgetObject (const char * path);
98
+ FirebaseObjectget (const char * path);
99
99
100
100
/* *
101
101
* Remove the node, and possibly entire tree, located at path.