@@ -42,7 +42,7 @@ class FirebaseArduino {
42
42
* Equivalent to the REST API's POST.
43
43
* You should check success() after calling.
44
44
* \param path The path of the parent node.
45
- * \param valueinteger value that you wish to append to the node.
45
+ * \param valueInteger value that you wish to append to the node.
46
46
* \return The unique key of the new child node.
47
47
*/
48
48
StringpushInt (const String& path,int value);
@@ -52,7 +52,7 @@ class FirebaseArduino {
52
52
* Equivalent to the REST API's POST.
53
53
* You should check success() after calling.
54
54
* \param path The path of the parent node.
55
- * \param valuefloat value that you wish to append to the node.
55
+ * \param valueFloat value that you wish to append to the node.
56
56
* \return The unique key of the new child node.
57
57
*/
58
58
StringpushFloat (const String& path,float value);
@@ -62,7 +62,7 @@ class FirebaseArduino {
62
62
* Equivalent to the REST API's POST.
63
63
* You should check success() after calling.
64
64
* \param path The path of the parent node.
65
- * \param valuebool value that you wish to append to the node.
65
+ * \param valueBool value that you wish to append to the node.
66
66
* \return The unique key of the new child node.
67
67
*/
68
68
StringpushBool (const String& path,bool value);
@@ -77,16 +77,6 @@ class FirebaseArduino {
77
77
*/
78
78
StringpushString (const String& path,const String& value);
79
79
80
- /* *
81
- * Appends the String value to the node at path.
82
- * Equivalent to the REST API's POST.
83
- * You should check success() after calling.
84
- * \param path The path of the parent node.
85
- * \param value String value that you wish to append to the node.
86
- * \return The unique key of the new child node.
87
- */
88
- StringpushString (const String& path,const char * value);
89
-
90
80
/* *
91
81
* Appends the JSON data to the node at path.
92
82
* Equivalent to the REST API's POST.
@@ -102,7 +92,7 @@ class FirebaseArduino {
102
92
* REST API's PUT.
103
93
* You should check success() after calling.
104
94
* \param path The path inside of your db to the node you wish to update.
105
- * \param valueinteger value that you wish to write.
95
+ * \param valueInteger value that you wish to write.
106
96
*/
107
97
void setInt (const String& path,int value);
108
98
@@ -111,7 +101,7 @@ class FirebaseArduino {
111
101
* REST API's PUT.
112
102
* You should check success() after calling.
113
103
* \param path The path inside of your db to the node you wish to update.
114
- * \param valuefloat value that you wish to write.
104
+ * \param valueFloat value that you wish to write.
115
105
*/
116
106
void setFloat (const String& path,float value);
117
107
@@ -120,7 +110,7 @@ class FirebaseArduino {
120
110
* REST API's PUT.
121
111
* You should check success() after calling.
122
112
* \param path The path inside of your db to the node you wish to update.
123
- * \param valuefloat value that you wish to write.
113
+ * \param valueBool value that you wish to write.
124
114
*/
125
115
void setBool (const String& path,bool value);
126
116
@@ -133,15 +123,6 @@ class FirebaseArduino {
133
123
*/
134
124
void setString (const String& path,const String& value);
135
125
136
- /* *
137
- * Writes the String value to the node located at path equivalent to the
138
- * REST API's PUT.
139
- * You should check success() after calling.
140
- * \param path The path inside of your db to the node you wish to update.
141
- * \param value String value that you wish to write.
142
- */
143
- void setString (const String& path,const char * value);
144
-
145
126
/* *
146
127
* Writes the JSON data to the node located at path.
147
128
* Equivalent to the REST API's PUT.