Skip to content

Commit

Permalink
Fix missing file.
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Oct 20, 2021
1 parent 979cc49 commit dbc0c60
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Firebase RTDB Arduino Client for ARM/AVR WIFI Dev Boards


Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, v 1.2.0
Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Development Boards based on WiFiNINA library, v 1.2.1

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

Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=Firebase Arduino based on WiFiNINA

version=1.2.0
version=1.2.1

author=Mobizt

Expand Down
10 changes: 10 additions & 0 deletions src/Config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#ifndef FIREBASE_SSL_CLIENT
#define FIREBASE_SSL_CLIENT

#if __has_include(<WiFiNINA.h>)
#include <WiFiNINA.h>
#elif __has_include(<WiFi101.h>)
#include <WiFi101.h>
#endif

#endif
6 changes: 3 additions & 3 deletions src/Firebase_Arduino_WiFiNINA.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Dev Boards based on WiFiNINA library, version 1.2.0
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Dev Boards based on WiFiNINA library, version 1.2.1
*
* This library required WiFiNINA Library to be installed.
* https://github.com/arduino-libraries/WiFiNINA
*
* Created: October 19, 2021
* Created: October 20, 2021
*
* Feature Added:
* - Add support 64-bit signed and unsigned integer.
*
* Feature Fixed:
* - Fix missing file.
*
*
* 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
Expand Down

0 comments on commit dbc0c60

Please sign in to comment.