#include <Arduino.h>
#if defined(ESP32) || defined(ARDUINO_RASPBERRY_PI_PICO_W)
#include <WiFi.h>
#elif defined(ESP8266)
#include <ESP8266WiFi.h>
#elif __has_include(<WiFiNINA.h>)
#include <WiFiNINA.h>
#elif __has_include(<WiFi101.h>)
#include <WiFi101.h>
#elif __has_include(<WiFiS3.h>)
#include <WiFiS3.h>
#endif
#include <Firebase_ESP_Client.h>
// Provide the token generation process info.
#include <addons/TokenHelper.h>
/* 1. Define the WiFi credentials */
#define WIFI_SSID "Wokwi-GUEST"
#define WIFI_PASSWORD ""
/* 2. Define the API Key */
#define API_KEY "AIzaSyArOBVPi_qR1unQ7AS2BXjHaQWdQ9l3HUE"
/* 3. Define the project ID */
#define FIREBASE_PROJECT_ID "denemefstore"
/* 4. Define the user Email and password that alreadey registerd or added in your project */
#define USER_EMAIL "[email protected]"
#define USER_PASSWORD "1111111"
FirebaseData fbdo;
FirebaseAuth auth;
FirebaseConfig config;
unsigned long dataMillis = 0;
int count = 0;
void fcsUploadCallback(CFS_UploadStatusInfo info)
{
if (info.status == firebase_cfs_upload_status_init)
{
Serial.printf("\nUploading data (%d)...\n", info.size);
}
else if (info.status == firebase_cfs_upload_status_upload)
{
Serial.printf("Uploaded %d%s\n", (int)info.progress, "%");
}
else if (info.status == firebase_cfs_upload_status_complete)
{
Serial.println("Upload completed ");
}
else if (info.status == firebase_cfs_upload_status_process_response)
{
Serial.print("Processing the response... ");
}
else if (info.status == firebase_cfs_upload_status_error)
{
Serial.printf("Upload failed, %s\n", info.errorMsg.c_str());
}
}
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32-S2!");
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("Connecting to Wi-Fi");
unsigned long ms = millis();
while (WiFi.status() != WL_CONNECTED)
{
Serial.print(".");
delay(300);
}
Serial.println();
Serial.print("Connected with IP: ");
Serial.println(WiFi.localIP());
Serial.println();
Serial.printf("Firebase Client v%s\n\n", FIREBASE_CLIENT_VERSION);
/* Assign the api key (required) */
config.api_key = API_KEY;
/* Assign the user sign in credentials */
auth.user.email = USER_EMAIL;
auth.user.password = USER_PASSWORD;
// The WiFi credentials are required for Pico W
// due to it does not have reconnect feature.
/* Assign the callback function for the long running token generation task */
config.token_status_callback = tokenStatusCallback; // see addons/TokenHelper.h
// Comment or pass false value when WiFi reconnection will control by your code or third party library e.g. WiFiManager
Firebase.reconnectNetwork(true);
// Since v4.4.x, BearSSL engine was used, the SSL buffer need to be set.
// Large data transmission may require larger RX buffer, otherwise connection issue or data read time out can be occurred.
fbdo.setBSSLBufferSize(4096 /* Rx buffer size in bytes from 512 - 16384 */, 1024 /* Tx buffer size in bytes from 512 - 16384 */);
// Limit the size of response payload to be collected in FirebaseData
fbdo.setResponseSize(2048);
Firebase.begin(&config, &auth);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
// Firebase.ready() should be called repeatedly to handle authentication tasks.
if (Firebase.ready() && (millis() - dataMillis > 60000 || dataMillis == 0))
{
dataMillis = millis();
// For the usage of FirebaseJson, see examples/FirebaseJson/BasicUsage/Create_Edit_Parse/Create_Edit_Parse.ino
FirebaseJson content;
// Note: If new document created under non-existent ancestor documents, that document will not appear in queries and snapshot
// https://cloud.google.com/firestore/docs/using-console#non-existent_ancestor_documents.
// We will create the document in the parent path "a0/b?
// a0 is the collection id, b? is the document id in collection a0.
String documentPath = "a0/b" + String(count);
// If the document path contains space e.g. "a b c/d e f"
// It should encode the space as %20 then the path will be "a%20b%20c/d%20e%20f"
// double
content.set("fields/myDouble/doubleValue", random(1, 500) / 100.0);
// boolean
content.set("fields/myBool/booleanValue", true);
// integer
content.set("fields/myInteger/integerValue", String(random(500, 1000)));
// null
content.set("fields/myNull/nullValue"); // no value set
String doc_path = "projects/";
doc_path += FIREBASE_PROJECT_ID;
doc_path += "/databases/(default)/documents/coll_id/doc_id"; // coll_id and doc_id are your collection id and document id
// reference
content.set("fields/myRef/referenceValue", doc_path.c_str());
// timestamp
content.set("fields/myTimestamp/timestampValue", "2014-10-02T15:01:23Z"); // RFC3339 UTC "Zulu" format
// bytes
content.set("fields/myBytes/bytesValue", "aGVsbG8="); // base64 encoded
// array
content.set("fields/myArray/arrayValue/values/[0]/stringValue", "test");
content.set("fields/myArray/arrayValue/values/[1]/integerValue", "20");
content.set("fields/myArray/arrayValue/values/[2]/booleanValue", true);
// map
content.set("fields/myMap/mapValue/fields/name/stringValue", "wrench");
content.set("fields/myMap/mapValue/fields/mass/stringValue", "1.3kg");
content.set("fields/myMap/mapValue/fields/count/integerValue", "3");
// lat long
content.set("fields/myLatLng/geoPointValue/latitude", 1.486284);
content.set("fields/myLatLng/geoPointValue/longitude", 23.678198);
count++;
Serial.print("Create a document... ");
if (Firebase.Firestore.createDocument(&fbdo, FIREBASE_PROJECT_ID, "" /* databaseId can be (default) or empty */, documentPath.c_str(), content.raw()))
Serial.printf("ok\n%s\n\n", fbdo.payload().c_str());
else
Serial.println(fbdo.errorReason());
}
}
Loading
esp32-s2-devkitm-1
esp32-s2-devkitm-1