Skip to content

Commit c2d4485

Browse files
committed
Fix compilation error for WiFiNINA
1 parent 0097114 commit c2d4485

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESP-Google-Sheet-Client",
3-
"version": "1.4.8",
3+
"version": "1.4.9",
44
"keywords": "communication, REST, esp32, esp8266, raspberrypi, arduino",
55
"description": "Arduino Google Sheet REST client library for Arduino devices. This library allows devices to communicate with Google Sheet API to read, edit and delete the spreadsheets",
66
"repository": {

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=ESP-Google-Sheet-Client
22

3-
version=1.4.8
3+
version=1.4.9
44

55
author=Mobizt
66

src/ESP_Google_Sheet_Client.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* Google Sheet Client, ESP_GOOGLE_SHEET_CLIENT_Google_Sheet_Client.cpp v1.4.3
2+
* Google Sheet Client, ESP_GOOGLE_SHEET_CLIENT_Google_Sheet_Client.cpp v1.4.9
33
*
44
* This library supports Espressif ESP8266 and ESP32 MCUs
55
*
6-
* Created November 10, 2023
6+
* Created April 15, 2025
77
*
88
* The MIT License (MIT)
99
* Copyright (c) 2023 K. Suwatchai (Mobizt)
@@ -68,7 +68,7 @@ void GSheetClass::auth(const char *client_email, const char *project_id, const c
6868
#endif
6969
}
7070

71-
#if defined(ESP_GOOGLE_SHEET_CLIENT_WIFI_IS_AVAILABLE)
71+
#if defined(ESP8266) || defined(ESP32)
7272
config.internal.reconnect_wifi = WiFi.getAutoReconnect();
7373
#endif
7474
config.signer.tokens.token_type = token_type_oauth2_access_token;

src/ESP_Google_Sheet_Client.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#ifndef ESP_GOOGLE_SHEET_CLIENT_VERSION
2-
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.8"
2+
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.9"
33
#endif
44

55
/**
6-
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.8
6+
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.9
77
*
88
* This library supports Espressif ESP8266 and ESP32 MCUs
99
*
10-
* Created Janauary 9, 2025
10+
* Created April 15, 2025
1111
*
1212
* The MIT License (MIT)
1313
* Copyright (c) 2023 K. Suwatchai (Mobizt)

0 commit comments

Comments
 (0)