mobizt / Firebase-ESP8266

[DEPRECATED] 🔥 Firebase RTDB Arduino Library for ESP8266 and RP2040 Pico. The complete, fast, secured and reliable Firebase Arduino client library that supports CRUD (create, read, update, delete) and Stream operations.
MIT License
411 stars 111 forks source link

help me, error compiling/uploading #339

Closed DipaSeukesa closed 2 years ago

DipaSeukesa commented 2 years ago

error report error: #error Architecture or board not supported.

error Architecture or board not supported.

^ exit status 1 Error compiling for board NodeMCU 1.0 (ESP-12E Module).

note: firebase_ESP8266_client v 4.0.3 esp8266 SDK v 2.7.4 arduinoJson 5x

"using the library from FirebaseExtended/firebase-arduino no error appears" I want to use this for periodic change issue in kfingerprint

mobizt commented 2 years ago

If you know how to program it correctly, the error is about you are using other libraries that don't support esp8266 which is not this library.

mobizt commented 2 years ago

The possible cause is because SD library SD.h which this Firebase library included to support SD filesystem.

Normally SD.h library is in the esp8266 core library here.

When you install other SD libraries that have the same header SD.h and it is not compatible with esp8266, that library may raise this error in its code. I found this error statement is from other Adafruit fork SD library.

The esp8266 core SD library is actually Adafruit fork version that adapted to use in esp8266 core.

Then you should delete all SD libraries found in your Arduino libraries folder.

mobizt commented 2 years ago

Don't quote my reply without doing anything. I already told you that you should delete SD library.