firebase-micropython-esp32
firebase-micropython-esp32 copied to clipboard
Firebase implementation for Micropython on ESP WROOM 32
Traceback (most recent call last): File "", line 3, in File "ufirebase.py", line 7, in ImportError: no module named '_thread'
Can we except upgradation to asyncio instead of _thread module ??
Can Micropython authenticate for providing the Rule of Firebase Realtime Database to improve the security?
On ESP8266, micropython 1.9.4. execfile doesn't work. We worked around this by modifying startup.py then importing and calling directly. usseclient had issues importing. Header comment was removed and it imported...
A simple loop makes my esp reboot: ``` count = 0 while LOOP == 1: print(firebase.get(URL)) time.sleep(1) firebase.put(URL, count) time.sleep(5) count += 1 ``` ``` assertion "0" failed: file "../../py/../extmod/modussl_mbedtls.c",...