This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
connect deta database to esp32 #100
Unanswered
Hermann002
asked this question in
Q&A
Replies: 1 comment
-
Please direct your question to the maintainer of the library you are using (https://github.com/A223D/detaBaseArduinoESP32). Also generate a new data key and delete this one because anyone can now access your Deta Base. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, please how can i connect the deta database to ESP 32 ?
here is my code...
#include <detaBaseArduinoESP32.h>
#include <WiFiClientSecure.h>
#define LED 2
char* apiKey = "a0piahtg37g_As5KJrq9cyGRUjU6KV5CjvPy1mMD7Pni";
char* detaID = "0piahtg37g";
char* detaBaseName = "test_dataBase";
WiFiClientSecure client;
DetaBaseObject detaObj(client, detaID, detaBaseName, apiKey, true);
Beta Was this translation helpful? Give feedback.
All reactions