Reputation: 73
I want to use FirebaseArduino library (Realtime database) on my Arduino Uno vs Ethernet shield instead of using NodeMCU (Use wire instead of wireless).
But when compiling source this error occurred:
Documents/Arduino/libraries/firebase-arduino-master/src/FirebaseArduino.h:20:18: fatal error: string: No such file or directory
#include <string>
Question 1
How could I resolve this problem?
Question 2
Could I use this library on Arduino Uno vs Ethernet shield? (This is written for ESP8266)
Upvotes: 0
Views: 964
Reputation: 73
Because MCUs mounted on Arduinos don't have the horse power to handle https connections.
(https://arduino.stackexchange.com/questions/4/how-to-get-https-on-arduino
or https://forum.arduino.cc/index.php?topic=427354.0)
So I am going to build a small back-end to forward packet to Firebase Database. Like @King Reload mentioned: github.com/robertcedwards/httpFirebase.
Upvotes: 1