ESP32 | Cloud Firestore - Ep 1. Firebase Setup

Поделиться
HTML-код
  • Опубликовано: 27 янв 2025

Комментарии • 22

  • @vijaykumarmourya5810
    @vijaykumarmourya5810 3 года назад

    Again Great Project Bro

  • @mohammadalisyaugialkaf8565
    @mohammadalisyaugialkaf8565 Год назад +1

    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?

    • @ThatProject
      @ThatProject  Год назад

      Not sure about it.
      Check this post.
      github.com/mobizt/Firebase-ESP32/issues/164

  • @ThatProject
    @ThatProject  3 года назад +2

    That Project's Channel - ruclips.net/user/ThatProject
    Join FB Group - facebook.com/groups/138965931539175

  • @tayyipensarozkaya2329
    @tayyipensarozkaya2329 3 года назад

    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?

    • @ThatProject
      @ThatProject  3 года назад

      Glad to hear that. The next video may be tomorrow.

  • @umarqayyum1098
    @umarqayyum1098 Год назад

    Hi, can you i know how to set up the sensor and esp part (the connection) ?

  • @codingfella464
    @codingfella464 8 месяцев назад

    Compilation error: no matching function for call to 'WiFiClass::onEvent(void (&)(arduino_event_id_t, arduino_event_info_t), system_event_id_t)'

    • @ThatProject
      @ThatProject  8 месяцев назад +2

      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);

    • @codingfella464
      @codingfella464 8 месяцев назад

      Thanks for your help ur amazing

  • @SabinTV-NP
    @SabinTV-NP Год назад

    The Wifi.h library has been deprecated. Is there a workaround for this?

    • @ThatProject
      @ThatProject  Год назад +1

      This is the latest project on using WiFi. Check this out. github.com/0015/ESP32Berry/blob/main/Arduino_IDE/ESP32Berry/ESP32Berry_Network.cpp

  • @mazinfo3978
    @mazinfo3978 3 года назад

    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,

    • @ThatProject
      @ThatProject  3 года назад

      This example will help. github.com/mobizt/Firebase-ESP-Client/blob/main/examples/Firestore/GetDocument/GetDocument.ino

  • @TheAmazingPlankton
    @TheAmazingPlankton 3 года назад

    Hello, do you make the Flutter App again? The old Version, don't work.. To many Updates

  • @matheusmartins8940
    @matheusmartins8940 3 года назад

    do this example work with esp8266? the cloud firestore and runtime database?

    • @ThatProject
      @ThatProject  3 года назад

      I believe so because the library says it supports both ESP32 and ESP8266.