send and read data to Firebase using esp8266 nodmcu wifi module(2022)

preview_player
Показать описание
sending data to Firebase using esp8266 .no need of fingerprint updating

Sensor Interfacing
_________________

Arduino Tutorials link
____________________

_____________________________________________________________

fusion 360 Tutorial link
_______________________

______________________________________________
social media links
_________________

Рекомендации по теме
Комментарии
Автор

Gracias esto era lo que estaba buscando por muchos meses. De verdad muchas gracias :D. how to modify the code to receive data from firebase? I was able to solve it

float n = 0.0;
void loop() {
Firebase.setFloat(firebaseData, "/number", n);
delay(1000);
if(Firebase.getInt(firebaseData, "/number/")){
if(firebaseData.dataType() == "int"){

}
}
n = n + 1;
}

raspicc