https://github.com/ehabmagdyy/esp-supabase-sendgetdata
ESP32/ESP8266 Send and Get Data with Supabase.
https://github.com/ehabmagdyy/esp-supabase-sendgetdata
esp32 esp8266 iot nodemcu supabase
Last synced: 2 months ago
JSON representation
ESP32/ESP8266 Send and Get Data with Supabase.
- Host: GitHub
- URL: https://github.com/ehabmagdyy/esp-supabase-sendgetdata
- Owner: EhabMagdyy
- Created: 2025-01-09T19:41:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-28T18:33:41.000Z (over 1 year ago)
- Last Synced: 2025-01-28T19:35:11.781Z (over 1 year ago)
- Topics: esp32, esp8266, iot, nodemcu, supabase
- Language: C++
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Video link: https://youtu.be/M_xgjJnVCO4
> 
---
### For Getting all table columns & rows (add this in line 101)
> ```bash
> String endpoint = String(supabaseUrl) + "/rest/v1/" + tableName + "?select=*";
> ```
### For Inserting a new row
#### replace line 53 by this
> ```bash
> String endpoint = String(supabaseUrl) + "/rest/v1/" + tableName;
> ```
>
#### replace line 62 by this
> ```bash
> int httpResponseCode = http.POST(jsonString);
> ```