Hello guys
Sorry for this low level question xD
It's about using this library in order to connect to my firebase through GPRS of SIM808.
Is it possible ? Where Arduino Uno communicate to SIM808 via Serial.
If so, Is this code enough ? If not, please help me .
`
#define FIREBASE_URL "Firebase URL"
#define FIREBASE_SECRET "Database Secrets"
void setup(){
firebase.begin(FIREBASE_URL,FIREBASE_SECRET);
}
//the rest are normal functions setting and retreiving data by firabase.set()'s and firebase.get()'s in loop().
`
I am uncertain-ed about the possibility of this library of sending and receiving data through SIM808.
Searched in examples, Works well but in order to use wifi capability of ESP8266.
*Edit :
I guess i need a chaining code to links firebase instance to AT commands that sent and received via Serial. as an interface.
All the best
Hamza Hajeir