-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#include "PocketBaseArduino.h" | ||
|
||
// ESP8266 | ||
#include <ESP8266WiFi.h> | ||
#include <ESP8266HTTPClient.h> | ||
|
||
// FOR ESP32 | ||
// #include <HTTPClient.h> | ||
// #include <WiFi.h> | ||
// #include <WiFiClientSecure.h> | ||
|
||
// HTTPS REQUESTS | ||
#include <BearSSLHelpers.h> | ||
|
||
const char *ssid = "YOUR_SSID"; | ||
const char *password = "YOUR_PASSWORD"; | ||
|
||
// Initializing the Pocketbase instance | ||
PocketbaseArduino pb("YOUR_POCKETBASE_BASE_URL"); | ||
String record; | ||
|
||
void setup() | ||
{ | ||
Serial.begin(115200); | ||
WiFi.begin(ssid, password); | ||
|
||
while (WiFi.status() != WL_CONNECTED) | ||
{ | ||
delay(1000); | ||
Serial.println("Connecting to WiFi..."); | ||
} | ||
|
||
// Example usage of getOne() function | ||
// getOne("record_id", "expand", "fields"), | ||
// if expand or fields are empty place nullptr | ||
record = pb.collection("collection_name").getOne("record_id", "expand", "fields"); | ||
|
||
// Example usage of getList() function | ||
// getList("page", "perPage", "sort", "filter", "skipTotal", "expand", "fields"), | ||
// if expand or fields are empty place nullptr | ||
record = pb.collection("collection_name").getList("page", "perPage", "sort", "filter", "skipTotal", "expand", "fields"); | ||
|
||
// Example usage of deleteRecord function | ||
// deleteRecord("record_id"); | ||
record = pb.collection("collection_name").deleteRecord("record_id"); | ||
|
||
// printing data | ||
Serial.println(record); | ||
} | ||
|
||
void loop() | ||
{ | ||
// Fetches and prints data from the 'notes' collection every 5 seconds | ||
record = pb.collection("collection_name").getList("page", "perPage", "sort", "filter", "skipTotal", "expand", "fields"); | ||
Serial.println("Data from 'notes' collection:\n" + record); | ||
delay(5000); | ||
} |