You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
-
# Supabase-ESP32
2
-
### A library to connect to Supabase's Realtime Database from an ESP32 in realtime with API Key authentication.
1
+
# Supabase-Arduino
2
+
### A library to connect to Supabase's Realtime Database from an Arduino with API Key authentication.
3
3
4
-
The Arduino Nano ESP32 library provides a simple and efficient way to integrate Supabase.io's Realtime Database into your ESP32 projects. By leveraging API Key authentication, this library enables real-time communication between your ESP32 microcontroller and Supabase.io's powerful database infrastructure.
4
+
The Arduino library provides a simple and efficient way to integrate Supabase.io's Realtime Database into your ESP32 or RP2040 projects. By leveraging API Key authentication, this library enables real-time communication between your microcontroller and Supabase.io's powerful database infrastructure.
5
5
6
-
To get started, simply include the library in your Arduino IDE and follow the provided documentation to establish a connection with Supabase.io. Once connected, you can easily retrieve, update, and synchronize data between your ESP32 and the Supabase.io Realtime Database.
6
+
To get started, simply include the library in your Arduino IDE and follow the provided documentation to establish a connection with Supabase.io. Once connected, you can easily retrieve, update, and synchronize data between your Arduino and the Supabase.io Realtime Database.
7
7
8
8
With the Arduino Nano ESP32 library, you can unlock the full potential of Supabase.io's Realtime Database and build IoT applications that seamlessly interact with cloud-based data. Start building your next project today!
9
9
---
@@ -12,9 +12,9 @@ At the moment installation has to be done manually either on a global level (*li
12
12
The library will be soon available also from the Arduino IDE.
13
13
14
14
For the time being when including it you'll have to go with
15
-
```#include "SupabaseESP32.h"```
15
+
```#include "SupabaseArduino.h"```
16
16
17
-
#### Usage
17
+
#### ESP32 Usage
18
18
In order to setup the library you need to pass the following data.
19
19
Please note that those data are available from you supabase database settings under the API tab (https://supabase.com/dashboard/project/PROJECT-CODE/settings/api).
20
20
```
@@ -46,4 +46,7 @@ After that line of code, you can use three different method in order to interact
46
46
supabaseClient.insert(column, value);
47
47
```
48
48
49
+
#### RP2040 Usage
50
+
Coming soon...
51
+
49
52
Under the examples you can find a .ino file that includes all the mentioned functions working.
0 commit comments