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 d9c4ac9 commit fef75f2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Dev Boards
based on WiFi101 library, v 1.2.0
based on WiFi101 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 WiFi101

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
7 changes: 3 additions & 4 deletions src/Firebase_Arduino_WiFi101.h
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@

/**
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Dev Boards based on WiFi101 library, version 1.2.0
* Google's Firebase Realtime Database Arduino Library for ARM/AVR WIFI Dev Boards based on WiFi101 library, version 1.2.1
*
* This library required WiFi101 Library to be installed.
* https://github.com/arduino-libraries/WiFi101
*
* 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 fef75f2

Please sign in to comment.