File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
examples/FirebasePush_ESP8266 Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Firebase& Firebase::auth(const String& auth) {
27
27
return *this ;
28
28
}
29
29
30
- String Firebase::val (const String& path) {
30
+ String Firebase::get (const String& path) {
31
31
return sendRequest (" GET" , path);
32
32
}
33
33
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class Firebase {
50
50
const FirebaseError& error () const {
51
51
return _error;
52
52
}
53
- String val (const String& path);
53
+ String get (const String& path);
54
54
String push (const String& path, const String& value);
55
55
bool connected ();
56
56
Firebase& stream (const String& path);
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ void setup() {
48
48
// print response.
49
49
Serial.println (l);
50
50
// print all entries.
51
- Serial.println (fbase.val (" /logs" ));
51
+ Serial.println (fbase.get (" /logs" ));
52
52
}
53
53
54
54
void loop () {
You can’t perform that action at this time.
0 commit comments