-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathExampleFunctions.h
More file actions
175 lines (156 loc) · 5.15 KB
/
ExampleFunctions.h
File metadata and controls
175 lines (156 loc) · 5.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#ifndef USER_DEBUG_PRINT_H
#define USER_DEBUG_PRINT_H
#include <FirebaseClient.h>
// WiFi library used in the examples
#if defined(ESP32) || defined(ARDUINO_RASPBERRY_PI_PICO_W) || defined(ARDUINO_GIGA) || defined(ARDUINO_OPTA)
#include <WiFi.h>
#elif defined(ESP8266)
#include <ESP8266WiFi.h>
#elif __has_include(<WiFiNINA.h>) || defined(ARDUINO_NANO_RP2040_CONNECT)
#include <WiFiNINA.h>
#elif __has_include(<WiFi101.h>)
#include <WiFi101.h>
#elif __has_include(<WiFiS3.h>) || defined(ARDUINO_UNOWIFIR4)
#include <WiFiS3.h>
#elif __has_include(<WiFiC3.h>) || defined(ARDUINO_PORTENTA_C33)
#include <WiFiC3.h>
#elif __has_include(<WiFi.h>)
#include <WiFi.h>
#endif
// SSL Client used in the examples
#if defined(ESP32) || defined(ESP8266) || defined(ARDUINO_RASPBERRY_PI_PICO_W)
#include <WiFiClientSecure.h>
#define SSL_CLIENT WiFiClientSecure
#elif defined(ARDUINO_ARCH_SAMD) || defined(ARDUINO_UNOWIFIR4) || defined(ARDUINO_GIGA) || defined(ARDUINO_OPTA) || defined(ARDUINO_PORTENTA_C33) || defined(ARDUINO_NANO_RP2040_CONNECT)
#include <WiFiSSLClient.h>
#define SSL_CLIENT WiFiSSLClient
#else
#define SSL_CLIENT ESP_SSLClient
#endif
// Set some SSL client for skipping server certificate verification.
void set_ssl_client_insecure_and_buffer(SSL_CLIENT &client)
{
#if defined(ESP32) || defined(ESP8266) || defined(PICO_RP2040)
client.setInsecure();
#if defined(ESP8266)
client.setBufferSizes(4096, 1024);
#endif
#else
(void)client;
#endif
}
// Filesystem and callback function used in the examples.
#if defined(ENABLE_FS)
// In ESP32 Core SDK v3.x.x, to use filesystem in this library,
// the File object should be defined globally
// and the library's internal defined FS object should be set with
// this global FS object in fileCallback function.
#include <FS.h>
File myFile;
#if defined(ESP32)
#include <SPIFFS.h>
#endif
#define MY_FS SPIFFS
void file_operation_callback(File &file, const char *filename, file_operating_mode mode)
{
// FILE_OPEN_MODE_READ, FILE_OPEN_MODE_WRITE and FILE_OPEN_MODE_APPEND are defined in this library
// MY_FS is defined in this example
switch (mode)
{
case file_mode_open_read:
myFile = MY_FS.open(filename, FILE_OPEN_MODE_READ);
break;
case file_mode_open_write:
myFile = MY_FS.open(filename, FILE_OPEN_MODE_WRITE);
break;
case file_mode_open_append:
myFile = MY_FS.open(filename, FILE_OPEN_MODE_APPEND);
break;
case file_mode_remove:
MY_FS.remove(filename);
break;
default:
break;
}
// Set the internal FS object with global File object.
file = myFile;
}
void print_file_content(const String &filename)
{
File file = MY_FS.open(filename, FILE_OPEN_MODE_READ);
int i = 0;
if (file)
{
while (file.available())
{
if (i > 0 && i % 16 == 0)
Serial.println();
int v = file.read();
if (v < 16)
Serial.print("0");
Serial.print(v, HEX);
Serial.print(" ");
i++;
}
Serial.println();
file.close();
}
}
#endif
// Debug information printing
void auth_debug_print(AsyncResult &aResult)
{
if (aResult.isEvent())
{
Firebase.printf("Event task: %s, msg: %s, code: %d\n", aResult.uid().c_str(), aResult.eventLog().message().c_str(), aResult.eventLog().code());
}
if (aResult.isDebug())
{
Firebase.printf("Debug task: %s, msg: %s\n", aResult.uid().c_str(), aResult.debug().c_str());
}
if (aResult.isError())
{
Firebase.printf("Error task: %s, msg: %s, code: %d\n", aResult.uid().c_str(), aResult.error().message().c_str(), aResult.error().code());
}
}
// Function to get NTP server time.
uint32_t get_ntp_time()
{
uint32_t ts = 0;
Serial.print("Getting time from NTP server... ");
#if defined(ESP8266) || defined(ESP32) || defined(CORE_ARDUINO_PICO)
int max_try = 10, retry = 0;
while (time(nullptr) < FIREBASE_DEFAULT_TS && retry < max_try)
{
configTime(3 * 3600, 0, "pool.ntp.org");
unsigned long m = millis();
while (time(nullptr) < FIREBASE_DEFAULT_TS && millis() - m < 10 * 1000)
{
delay(100);
ts = time(nullptr);
}
Serial.print(ts == 0 ? " failed, retry... " : "");
retry++;
}
ts = time(nullptr);
#elif __has_include(<WiFiNINA.h>) || __has_include(<WiFi101.h>)
ts = WiFi.getTime();
#endif
Serial.println(ts > 0 ? "success" : "failed");
return ts;
}
// Token type information printing
void print_token_type(FirebaseApp &app)
{
Firebase.printf("Auth Token: %s\n", app.getToken().c_str());
firebase_token_type type = app.getTokenType();
if (type == token_type_access)
Serial.println("Type: access token");
else if (type == token_type_id)
Serial.println("Type: ID token");
else if (type == token_type_legacy)
Serial.println("Type: legacy token");
else if (type == token_type_no)
Serial.println("Type: no token");
}
#endif