#include <Arduino.h>
#if defined(ESP32)
#include <WiFi.h>
#elif defined(ESP8266)
#include <ESP8266WiFi.h>
#endif
#include <Firebase_ESP_Client.h>
//Provide the token generation process info.
#include "addons/TokenHelper.h"
//Provide the RTDB payload printing info and other helper functions.
#include "addons/RTDBHelper.h"
// Insert your network credentials
#define WIFI_SSID "FTStudent"
#define WIFI_PASSWORD "Student@1718"
// Insert Firebase project API Key
#define API_KEY "AIzaSyAvXnA0q7voWewQIX5Rd3_eNjzvWhJAzm0"
// Insert RTDB URLefine the RTDB URL */
#define DATABASE_URL "sample-d7987-default-rtdb.firebaseio.com"
//Define Firebase Data object
FirebaseData fbdo;
FirebaseAuth auth;
FirebaseConfig config;
//unsigned long sendDataPrevMillis = 0;
//int count = 0;
bool signupOK = false;
// String fireStatus = "";
// int led = 2;
void setup(){
Serial.begin(115200);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("Connecting to Wi-Fi");
while (WiFi.status() != WL_CONNECTED){
Serial.print(".");
delay(300);
}
Serial.println();
Serial.print("Connected with IP: ");
Serial.println(WiFi.localIP());
Serial.println();
/* Assign the api key (required) */
config.api_key = API_KEY;
/* Assign the RTDB URL (required) */
config.database_url = DATABASE_URL;
/* Sign up */
if (Firebase.signUp(&config, &auth, "", "")){
Serial.println("ok");
signupOK = true;
}
else{
Serial.printf("%s\n", config.signer.signupError.message.c_str());
}
/* Assign the callback function for the long running token generation task */
config.token_status_callback = tokenStatusCallback; //see addons/TokenHelper.h
Firebase.begin(&config, &auth);
Firebase.reconnectWiFi(true);
}
void loop(){
delay(1000);
float h = 100.0;
float t = 200.0;
if (Firebase.ready() && signupOK ) {
if (Firebase.RTDB.setFloat(&fbdo, "Values/Humidity",h)){
// Serial.println("PASSED");
Serial.print("Humidity: ");
Serial.print(h);
Serial.println("%");
}
else {
Serial.println("FAILED");
Serial.println("REASON: " + fbdo.errorReason());
}
// Write an Float number on the database path test/float
if (Firebase.RTDB.setFloat(&fbdo, "Values/Temperature", t)){
// Serial.println("PASSED");
Serial.print("Temperature: ");
Serial.print(t);
Serial.println("°C");
}
else {
Serial.println("FAILED");
Serial.println("REASON: " + fbdo.errorReason());
}
}
Serial.println("");
delay(2000);
}