I have an error when i tried to run ur code (i modified a lil bit because im using esp32 and i dont use the display). i got an error like this: 09:57:35.434 -> Token Info: type = id token (GITKit token), status = on request 09:57:35.511 -> Guru Meditation Error: Core 1 panic'ed (Unhandled debug exception) 09:57:35.511 -> Debug exception reason: Stack canary watchpoint triggered (network_event) 09:57:35.544 -> Core 1 register dump: and so on the hexadecimals.... is the main problem was the token sir?
Perfect! Exactly what I needed. Waiting for your next video. That's the part where I'm really struggling. In what time frame are you planning to upload the next one?
This is because the WiFi Event definition part has changed in the latest version of ESP32. Please change it as follows. WiFi.onEvent(WiFiEventConnected, ARDUINO_EVENT_WIFI_STA_CONNECTED); WiFi.onEvent(WiFiEventGotIP, ARDUINO_EVENT_WIFI_STA_GOT_IP); WiFi.onEvent(WiFiEventDisconnected, ARDUINO_EVENT_WIFI_STA_DISCONNECTED);
Again Great Project Bro
Thanks ✌
I have an error when i tried to run ur code (i modified a lil bit because im using esp32 and i dont use the display).
i got an error like this:
09:57:35.434 -> Token Info: type = id token (GITKit token), status = on request
09:57:35.511 -> Guru Meditation Error: Core 1 panic'ed (Unhandled debug exception)
09:57:35.511 -> Debug exception reason: Stack canary watchpoint triggered (network_event)
09:57:35.544 -> Core 1 register dump:
and so on the hexadecimals....
is the main problem was the token sir?
Not sure about it.
Check this post.
github.com/mobizt/Firebase-ESP32/issues/164
That Project's Channel - ruclips.net/user/ThatProject
Join FB Group - facebook.com/groups/138965931539175
Perfect! Exactly what I needed. Waiting for your next video. That's the part where I'm really struggling. In what time frame are you planning to upload the next one?
Glad to hear that. The next video may be tomorrow.
Hi, can you i know how to set up the sensor and esp part (the connection) ?
Compilation error: no matching function for call to 'WiFiClass::onEvent(void (&)(arduino_event_id_t, arduino_event_info_t), system_event_id_t)'
This is because the WiFi Event definition part has changed in the latest version of ESP32. Please change it as follows.
WiFi.onEvent(WiFiEventConnected, ARDUINO_EVENT_WIFI_STA_CONNECTED);
WiFi.onEvent(WiFiEventGotIP, ARDUINO_EVENT_WIFI_STA_GOT_IP);
WiFi.onEvent(WiFiEventDisconnected, ARDUINO_EVENT_WIFI_STA_DISCONNECTED);
Thanks for your help ur amazing
The Wifi.h library has been deprecated. Is there a workaround for this?
This is the latest project on using WiFi. Check this out. github.com/0015/ESP32Berry/blob/main/Arduino_IDE/ESP32Berry/ESP32Berry_Network.cpp
Thanks a lot, I learned now how to upload data to firestore, could you please give a small function how to read data from firestore.
Thanks,
This example will help. github.com/mobizt/Firebase-ESP-Client/blob/main/examples/Firestore/GetDocument/GetDocument.ino
Hello, do you make the Flutter App again? The old Version, don't work.. To many Updates
That's my plan.
do this example work with esp8266? the cloud firestore and runtime database?
I believe so because the library says it supports both ESP32 and ESP8266.