ESP32 | Cloud Firestore - Ep 1. Firebase Setup

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 พ.ค. 2024
  • Firebase provides two types of Database: Realtime Database and Cloud Firestore.
    At first, the real-time database was first served,
    but cloud Firestore was introduced for its complementary and improved performance. To summarize, the big differences are data models, queries, scalability, and pricing policies. Let's see more about it.
    [Firebase Pricing]
    firebase.google.com/pricing
    [Project Github]
    github.com/0015/ThatProject/t...
    #ESP32 #Firestore #DHT11 #Firebase #CloudDB #ESP32TTGO #IoTProject
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 22

  • @tayyipensarozkaya2329
    @tayyipensarozkaya2329 2 ปีที่แล้ว

    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  2 ปีที่แล้ว

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

  • @vijaykumarmourya5810
    @vijaykumarmourya5810 2 ปีที่แล้ว

    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  2 ปีที่แล้ว +2

    That Project's Channel - th-cam.com/users/ThatProject
    Join FB Group - facebook.com/groups/138965931539175

  • @matheusmartins8940
    @matheusmartins8940 2 ปีที่แล้ว

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

    • @ThatProject
      @ThatProject  2 ปีที่แล้ว

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

  • @TheAmazingPlankton
    @TheAmazingPlankton 2 ปีที่แล้ว

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

  • @SabinTV-NP
    @SabinTV-NP 7 หลายเดือนก่อน

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

    • @ThatProject
      @ThatProject  7 หลายเดือนก่อน +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 2 ปีที่แล้ว

    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  2 ปีที่แล้ว

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

  • @codingfella464
    @codingfella464 25 วันที่ผ่านมา

    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  25 วันที่ผ่านมา +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 24 วันที่ผ่านมา

      Thanks for your help ur amazing