I am currently using the Adafruit Feather board, and I wish to connect it to Firebase as part of a home project. Following numerous online guides especially on Github, I have downloaded the library for Firebase (GitHub - FirebaseExtended/firebase-arduino: Arduino samples for Firebase.), where I included the library into Arduino and ran the program. This showed me with an error regarding 'include ArduinoJson', which I then further downloaded (GitHub - bblanchon/ArduinoJson: 📟 JSON library for Arduino and embedded C++. Simple and efficient.). This has then come up with an error of:
/Users/Zee/Documents/Arduino/libraries/firebase_arduino_master/src/FirebaseHttpClient_Esp8266.cpp:7:30: fatal error: WiFiClientSecure.h: No such file or directory
#include <WiFiClientSecure.h>
^
compilation terminated.
exit status 1
Error compiling for board Adafruit Feather M0.
after more research, I have found that Firebase continuously gives problems when trying to implement with Arduino as it is 'highly unstable'. Is this true? If so, are there any possible solutions to allow a database connection that can be linked to Xcode as well? If not, what are the steps in order to implement Firebase to my micro controller as I seem to be missing something?