Search
 
SCRIPT & CODE EXAMPLE
 

C

Firebase Connecting with ESP8266

#include <ESP8266WiFi.h>                                               
#include <FirebaseArduino.h>                                        
 
#define FIREBASE_HOST "my1stproject-34e8e.firebaseio.com"              // the project name address from firebase id
#define FIREBASE_AUTH "KeiqJV41s********************LdNXL"       // the secret key generated from firebase
#define WIFI_SSID "Alexahome"                                          
#define WIFI_PASSWORD "12345678"                                  
 
String fireStatus = "";                                                     // led status received from firebase
int led = 5;  
                                                              
void setup() 
{
  Serial.begin(9600);
  delay(1000);    
  pinMode(led, OUTPUT);                 
  WiFi.begin(WIFI_SSID, WIFI_PASSWORD);                               
  Serial.print("Connecting to ");
  Serial.print(WIFI_SSID);
  while (WiFi.status() != WL_CONNECTED) 
  {
    Serial.print(".");
    delay(500);
  }
  Serial.println();
  Serial.print("Connected to ");
  Serial.println(WIFI_SSID);
  Firebase.begin(FIREBASE_HOST, FIREBASE_AUTH);                  // connect to firebase
  Firebase.setString("LED_STATUS", "OFF");                       //send initial string of led status
}
 
void loop() 
{
  fireStatus = Firebase.getString("LED_STATUS");                                      // get ld status input from firebase
  if (fireStatus == "ON") 
  {                                                          // compare the input of led status received from firebase
    Serial.println("Led Turned ON");                                                        
    digitalWrite(led, HIGH);                                                         // make external led ON
  } 
  else if (fireStatus == "OFF") 
  {                                                  // compare the input of led status received from firebase
    Serial.println("Led Turned OFF");
    digitalWrite(led, LOW);                                                         // make external led OFF
  }
  else 
  {
    Serial.println("Command Error! Please send ON/OFF");
  }
}
Comment

PREVIOUS NEXT
Code Example
C :: Convert mpg / mp4 to gif with ffmpeg 
C :: make a function makefile 
C :: ruby find object in array by attribute 
C :: casting an int to a char in c 
C :: how to get input in 2d array in c 
C :: c recursion func revers number 
C :: c program to find the frequency of all characters in a string 
C :: replacing a character in string in C 
C :: inputting an array in c 
C :: houdini vex loop over points 
C :: mount cifs 
C :: How to pass a struct value to a pthread in c? 
C :: syntax 
C :: do...while loop c 
C :: how to allocate memory for pointer in c 
C :: replace a substring with another substring in c 
C :: convert char number to int in c 
C :: empiler une pile on c 
C :: mediawiki upload size 
C :: stddef.h 
C :: c char to int 
C :: how to debug a segmentation fault in c 
C :: c calling a function 
C :: convert python to c 
C :: arduino internal pull up resistor 
C :: how to change the smartart style to 3D polished in powerpoint 
C :: create a gtk window 
C :: tytykjtuky 
C :: What keyword covers unhandled possibilities? 
C :: link a lib iusing pragma 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =