Skip to content

Commit b05bf20

Browse files
committed
Fixed name conflicts
1 parent 8c7644f commit b05bf20

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Firebase RTDB Arduino Client for ARM/AVR WIFI Dev Boards
22

33

4-
Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, v 1.0.4
4+
Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, v 1.0.5
55

66
This client library provides the most reliable operations for read, store, update Firebase RTDB through REST API.
77

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=Firebase Arduino based on WiFiNINA
22

3-
version=1.0.4
3+
version=1.0.5
44

55
author=Mobizt
66

src/Firebase_Arduino_WiFiNINA.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, version 1.0.4
2+
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, version 1.0.5
33
*
44
*
55
* This library required WiFiNINA Library to be installed.
@@ -138,7 +138,7 @@ bool Firebase_Arduino_WiFiNINA::pushTimestamp(FirebaseData &dataObj, const Strin
138138
char *tmp = new char[60];
139139
strCopy_T(tmp, 113, true, 60);
140140

141-
bool flag = buildRequest(dataObj, path.c_str(), FirebaseMethod::POST, FirebaseDataType::TIMESTAMP, tmp);
141+
bool flag = sendRequest(dataObj, path.c_str(), FirebaseMethod::POST, FirebaseDataType::TIMESTAMP, tmp);
142142
delete[] tmp;
143143
return flag;
144144
}
@@ -196,7 +196,7 @@ bool Firebase_Arduino_WiFiNINA::setTimestamp(FirebaseData &dataObj, const String
196196
char *tmp = new char[60];
197197
strCopy_T(tmp, 113, true, 60);
198198

199-
bool flag = buildRequest(dataObj, path.c_str(), FirebaseMethod::PUT, FirebaseDataType::TIMESTAMP, tmp);
199+
bool flag = sendRequest(dataObj, path.c_str(), FirebaseMethod::PUT, FirebaseDataType::TIMESTAMP, tmp);
200200
delete[] tmp;
201201
return flag;
202202
}

src/Firebase_Arduino_WiFiNINA.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, version 1.0.4
2+
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, version 1.0.5
33
*
44
*
55
* This library required WiFiNINA Library to be installed.

0 commit comments

Comments
 (0)