Skip to content

Commit 5d6b4bb

Browse files
committed
Update
1 parent 484af26 commit 5d6b4bb

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-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.6
4+
Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, v 1.0.7
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.6
3+
version=1.0.7
44

55
author=Mobizt
66

src/Firebase_Arduino_WiFiNINA.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, version 1.0.6
2+
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, version 1.0.7
33
*
44
*
55
* This library required WiFiNINA Library to be installed.
66
* https://github.com/arduino-libraries/WiFiNINA
77
*
8-
* June 18, 2019
8+
* August 7, 2019
99
*
1010
* Feature Added:
1111
*
@@ -733,6 +733,7 @@ bool Firebase_Arduino_WiFiNINA::getServerResponse(FirebaseData &dataObj)
733733
hasEvent = true;
734734
isStream = true;
735735
dataObj._httpCode = _HTTP_CODE_OK;
736+
memset(lineBuf, 0, FIREBASE_RESPONSE_SIZE);
736737
}
737738

738739
strCopy_T(fstr, 14, true, 60);
@@ -747,6 +748,7 @@ bool Firebase_Arduino_WiFiNINA::getServerResponse(FirebaseData &dataObj)
747748
strncpy(tmp, lineBuf + p1 + strlen_P(C_STR_14), strlen(lineBuf) - p1 - strlen_P(C_STR_14));
748749
memset(lineBuf, 0, FIREBASE_RESPONSE_SIZE);
749750
strcpy(lineBuf, tmp);
751+
break;
750752
}
751753
}
752754
}

src/Firebase_Arduino_WiFiNINA.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, version 1.0.6
2+
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, version 1.0.7
33
*
44
*
55
* This library required WiFiNINA Library to be installed.
66
* https://github.com/arduino-libraries/WiFiNINA
77
*
8-
* June 18, 2019
8+
* August 7, 2019
99
*
1010
* Feature Added:
1111
*
@@ -982,6 +982,8 @@ class FirebaseData
982982
*/
983983
String payload();
984984

985+
986+
985987
QueryFilter queryFilter;
986988

987989
protected:
@@ -1029,6 +1031,8 @@ class FirebaseData
10291031

10301032
void strCopy_T(char *buf, uint16_t index, bool empty = false, uint16_t size = 0);
10311033

1034+
void end();
1035+
10321036
friend Firebase_Arduino_WiFiNINA;
10331037
};
10341038

0 commit comments

Comments
 (0)