Firebase and ESP8622MOD and sensor IoT faill conectHow to store and view images on firebase?IoT Raspberry Pi Sensor TagIs it safe to expose Firebase apiKey to the public?How to handle notification when app in background in FirebaseApache Nifi with IOT sensorsDefining a standard for sensor data (IoT)IoT speed sensorFirebase Module Installation FailledAuthenticate IoT Appliance Using Firebase AuthIoT device management/onboarding with Google Firebase
A Trivial Diagnosis
Why does Carol not get rid of the Kree symbol on her suit when she changes its colours?
How could a planet have erratic days?
Why is it that I can sometimes guess the next note?
What does Apple's new App Store requirement mean
Do we have to expect a queue for the shuttle from Watford Junction to Harry Potter Studio?
15% tax on $7.5k earnings. Is that right?
The IT department bottlenecks progress, how should I handle this?
How to explain what's wrong with this application of the chain rule?
How to preserve electronics (computers, iPads and phones) for hundreds of years
Which Article Helped Get Rid of Technobabble in RPGs?
Permission on Database
What is the English pronunciation of "pain au chocolat"?
Giving feedback to someone without sounding prejudiced
Did the UK lift the requirement for registering SIM cards?
I found an audio circuit and I built it just fine, but I find it a bit too quiet. How do I amplify the output so that it is a bit louder?
Find the next value of this number series
How do I fix the group tension caused by my character stealing and possibly killing without provocation?
How much theory knowledge is actually used while playing?
Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?
Creating two special characters
A variation to the phrase "hanging over my shoulders"
How to convince somebody that he is fit for something else, but not this job?
Stack Interview Code methods made from class Node and Smart Pointers
Firebase and ESP8622MOD and sensor IoT faill conect
How to store and view images on firebase?IoT Raspberry Pi Sensor TagIs it safe to expose Firebase apiKey to the public?How to handle notification when app in background in FirebaseApache Nifi with IOT sensorsDefining a standard for sensor data (IoT)IoT speed sensorFirebase Module Installation FailledAuthenticate IoT Appliance Using Firebase AuthIoT device management/onboarding with Google Firebase
first forgive me for my poor English,
I am having trouble connecting my ESP8622MOD with the actual database of the firebase.
The code compiles without errors by the arduino IDE but the data is not saved in the database. I have already tried to update libraries and everything that is possible.
Until a few days ago it was working, now it's gone.
Has anyone gone through this? Do you know how to help?
Thank you
em português:
Prezados, primeiramente me perdoe pelo meu péssimo inglês,
Eu estou com problemas para conectar meu ESP8622MOD com o Database real time do firebase.
O código compila sem erros pela IDE arduino porém os dados não são salvos no banco de dados. Já tentei atualizar bibliotecas e tudo o que é possível.
Até poucos dias atrás estava funcionando, agora não está mais.
Alguém passou por isso? sabe como ajudar?
Obrigado
#include <ESP8266WiFi.h>
#include <FirebaseArduino.h>
#define FIREBASE_HOST "ldr-se...."
#define FIREBASE_AUTH "hErtyqjScrcF..."
#define WIFI_SSID "WIFI..."
#define WIFI_PASSWORD "97D124D.."
void setup()
Serial.begin(9600);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("conectando");
while (WiFi.status() != WL_CONNECTED)
Serial.print(".");
delay(500);
Serial.println();
Serial.print("conectado: ");
Serial.println(WiFi.localIP());
Firebase.begin(FIREBASE_HOST, FIREBASE_AUTH);
void loop()
int sensorValue = analogRead(A0); // Ler o pino Analógico A0 onde está o LDR
float voltagem = sensorValue * (3.3 / 1024.0);
Serial.println(voltagem);
Firebase.pushFloat ("LDR", voltagem);
delay(5000);
the link of the tutorial is:
https://www.embarcados.com.br/envio-dados-ldr-firebase-esp8266/#Passo-4--Configuracao-do-Firebase
firebase iot arduino-esp8266
add a comment |
first forgive me for my poor English,
I am having trouble connecting my ESP8622MOD with the actual database of the firebase.
The code compiles without errors by the arduino IDE but the data is not saved in the database. I have already tried to update libraries and everything that is possible.
Until a few days ago it was working, now it's gone.
Has anyone gone through this? Do you know how to help?
Thank you
em português:
Prezados, primeiramente me perdoe pelo meu péssimo inglês,
Eu estou com problemas para conectar meu ESP8622MOD com o Database real time do firebase.
O código compila sem erros pela IDE arduino porém os dados não são salvos no banco de dados. Já tentei atualizar bibliotecas e tudo o que é possível.
Até poucos dias atrás estava funcionando, agora não está mais.
Alguém passou por isso? sabe como ajudar?
Obrigado
#include <ESP8266WiFi.h>
#include <FirebaseArduino.h>
#define FIREBASE_HOST "ldr-se...."
#define FIREBASE_AUTH "hErtyqjScrcF..."
#define WIFI_SSID "WIFI..."
#define WIFI_PASSWORD "97D124D.."
void setup()
Serial.begin(9600);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("conectando");
while (WiFi.status() != WL_CONNECTED)
Serial.print(".");
delay(500);
Serial.println();
Serial.print("conectado: ");
Serial.println(WiFi.localIP());
Firebase.begin(FIREBASE_HOST, FIREBASE_AUTH);
void loop()
int sensorValue = analogRead(A0); // Ler o pino Analógico A0 onde está o LDR
float voltagem = sensorValue * (3.3 / 1024.0);
Serial.println(voltagem);
Firebase.pushFloat ("LDR", voltagem);
delay(5000);
the link of the tutorial is:
https://www.embarcados.com.br/envio-dados-ldr-firebase-esp8266/#Passo-4--Configuracao-do-Firebase
firebase iot arduino-esp8266
add a comment |
first forgive me for my poor English,
I am having trouble connecting my ESP8622MOD with the actual database of the firebase.
The code compiles without errors by the arduino IDE but the data is not saved in the database. I have already tried to update libraries and everything that is possible.
Until a few days ago it was working, now it's gone.
Has anyone gone through this? Do you know how to help?
Thank you
em português:
Prezados, primeiramente me perdoe pelo meu péssimo inglês,
Eu estou com problemas para conectar meu ESP8622MOD com o Database real time do firebase.
O código compila sem erros pela IDE arduino porém os dados não são salvos no banco de dados. Já tentei atualizar bibliotecas e tudo o que é possível.
Até poucos dias atrás estava funcionando, agora não está mais.
Alguém passou por isso? sabe como ajudar?
Obrigado
#include <ESP8266WiFi.h>
#include <FirebaseArduino.h>
#define FIREBASE_HOST "ldr-se...."
#define FIREBASE_AUTH "hErtyqjScrcF..."
#define WIFI_SSID "WIFI..."
#define WIFI_PASSWORD "97D124D.."
void setup()
Serial.begin(9600);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("conectando");
while (WiFi.status() != WL_CONNECTED)
Serial.print(".");
delay(500);
Serial.println();
Serial.print("conectado: ");
Serial.println(WiFi.localIP());
Firebase.begin(FIREBASE_HOST, FIREBASE_AUTH);
void loop()
int sensorValue = analogRead(A0); // Ler o pino Analógico A0 onde está o LDR
float voltagem = sensorValue * (3.3 / 1024.0);
Serial.println(voltagem);
Firebase.pushFloat ("LDR", voltagem);
delay(5000);
the link of the tutorial is:
https://www.embarcados.com.br/envio-dados-ldr-firebase-esp8266/#Passo-4--Configuracao-do-Firebase
firebase iot arduino-esp8266
first forgive me for my poor English,
I am having trouble connecting my ESP8622MOD with the actual database of the firebase.
The code compiles without errors by the arduino IDE but the data is not saved in the database. I have already tried to update libraries and everything that is possible.
Until a few days ago it was working, now it's gone.
Has anyone gone through this? Do you know how to help?
Thank you
em português:
Prezados, primeiramente me perdoe pelo meu péssimo inglês,
Eu estou com problemas para conectar meu ESP8622MOD com o Database real time do firebase.
O código compila sem erros pela IDE arduino porém os dados não são salvos no banco de dados. Já tentei atualizar bibliotecas e tudo o que é possível.
Até poucos dias atrás estava funcionando, agora não está mais.
Alguém passou por isso? sabe como ajudar?
Obrigado
#include <ESP8266WiFi.h>
#include <FirebaseArduino.h>
#define FIREBASE_HOST "ldr-se...."
#define FIREBASE_AUTH "hErtyqjScrcF..."
#define WIFI_SSID "WIFI..."
#define WIFI_PASSWORD "97D124D.."
void setup()
Serial.begin(9600);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("conectando");
while (WiFi.status() != WL_CONNECTED)
Serial.print(".");
delay(500);
Serial.println();
Serial.print("conectado: ");
Serial.println(WiFi.localIP());
Firebase.begin(FIREBASE_HOST, FIREBASE_AUTH);
void loop()
int sensorValue = analogRead(A0); // Ler o pino Analógico A0 onde está o LDR
float voltagem = sensorValue * (3.3 / 1024.0);
Serial.println(voltagem);
Firebase.pushFloat ("LDR", voltagem);
delay(5000);
the link of the tutorial is:
https://www.embarcados.com.br/envio-dados-ldr-firebase-esp8266/#Passo-4--Configuracao-do-Firebase
firebase iot arduino-esp8266
firebase iot arduino-esp8266
asked Mar 7 at 23:27
Lucas SouzaLucas Souza
32
32
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This also happpen to me, my project have been working perfectly for 6 months non-stop until someday it stopped. I tracked it to be 1st of March, and I go and search for firebase in Google and found that they upgraded something inside firebase. That's probably why my project stopped working suddenly.
I went to this website and downloaded his library, everything is the same except the fingerprint, use the library included in the following website, my project is now working again.
https://www.hackanons.com/2018/02/iot-with-firebase-connecting-arduino.html?m=1
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55054454%2ffirebase-and-esp8622mod-and-sensor-iot-faill-conect%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This also happpen to me, my project have been working perfectly for 6 months non-stop until someday it stopped. I tracked it to be 1st of March, and I go and search for firebase in Google and found that they upgraded something inside firebase. That's probably why my project stopped working suddenly.
I went to this website and downloaded his library, everything is the same except the fingerprint, use the library included in the following website, my project is now working again.
https://www.hackanons.com/2018/02/iot-with-firebase-connecting-arduino.html?m=1
add a comment |
This also happpen to me, my project have been working perfectly for 6 months non-stop until someday it stopped. I tracked it to be 1st of March, and I go and search for firebase in Google and found that they upgraded something inside firebase. That's probably why my project stopped working suddenly.
I went to this website and downloaded his library, everything is the same except the fingerprint, use the library included in the following website, my project is now working again.
https://www.hackanons.com/2018/02/iot-with-firebase-connecting-arduino.html?m=1
add a comment |
This also happpen to me, my project have been working perfectly for 6 months non-stop until someday it stopped. I tracked it to be 1st of March, and I go and search for firebase in Google and found that they upgraded something inside firebase. That's probably why my project stopped working suddenly.
I went to this website and downloaded his library, everything is the same except the fingerprint, use the library included in the following website, my project is now working again.
https://www.hackanons.com/2018/02/iot-with-firebase-connecting-arduino.html?m=1
This also happpen to me, my project have been working perfectly for 6 months non-stop until someday it stopped. I tracked it to be 1st of March, and I go and search for firebase in Google and found that they upgraded something inside firebase. That's probably why my project stopped working suddenly.
I went to this website and downloaded his library, everything is the same except the fingerprint, use the library included in the following website, my project is now working again.
https://www.hackanons.com/2018/02/iot-with-firebase-connecting-arduino.html?m=1
edited Mar 8 at 9:36
answered Mar 8 at 9:15
garmisch wonggarmisch wong
234
234
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55054454%2ffirebase-and-esp8622mod-and-sensor-iot-faill-conect%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown