Skip to content

Commit e7e3b53

Browse files
committed
Minor HTTPClient update.
1 parent b850511 commit e7e3b53

File tree

3 files changed

+5
-3
lines changed

3 files changed

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

55
author=Mobizt
66

src/Firebase_Arduino_WiFiNINA_HTTPClient.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@
3737
#include <Arduino.h>
3838
#include <SPI.h>
3939
#include <WiFiNINA.h>
40-
40+
#if __has_include(<WiFiEspAT.h>) || __has_include(<espduino.h>)
41+
#error WiFi UART bridge was not supported.
42+
#endif
4143

4244
/// HTTP client errors
4345
#define HTTPC_ERROR_CONNECTION_REFUSED (-1)

0 commit comments

Comments
 (0)