Skip to content

Commit dbc0c60

Browse files
committed
Fix missing file.
1 parent 979cc49 commit dbc0c60

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
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.2.0
4+
Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, v 1.2.1
55

66
This client library provides the most reliable operations for read, store, and update the Firebase RTDB through the 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.2.0
3+
version=1.2.1
44

55
author=Mobizt
66

src/Config.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#ifndef FIREBASE_SSL_CLIENT
2+
#define FIREBASE_SSL_CLIENT
3+
4+
#if __has_include(<WiFiNINA.h>)
5+
#include <WiFiNINA.h>
6+
#elif __has_include(<WiFi101.h>)
7+
#include <WiFi101.h>
8+
#endif
9+
10+
#endif

src/Firebase_Arduino_WiFiNINA.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/**
2-
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Dev Boards based on WiFiNINA library, version 1.2.0
2+
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Dev Boards based on WiFiNINA library, version 1.2.1
33
*
44
* This library required WiFiNINA Library to be installed.
55
* https://github.com/arduino-libraries/WiFiNINA
66
*
7-
* Created: October 19, 2021
7+
* Created: October 20, 2021
88
*
99
* Feature Added:
10-
* - Add support 64-bit signed and unsigned integer.
1110
*
1211
* Feature Fixed:
12+
* - Fix missing file.
1313
*
1414
*
1515
* This library provides ARM/AVR WIFI Development Boards to perform REST API by GET PUT, POST, PATCH, DELETE data from/to with Google's Firebase database using get, set, update

0 commit comments

Comments
 (0)