skip to Main Content

I`d like to know how can I send data from modem gsm connected! to esp32 with at commands?
I use this at command to send to thingspeak

String cmdString = "AT+HTTPGET="``http://api.thingspeak.com/update.json?api_key=``" + apiKey +"&field1=" + temperatura + "&field2=" + humitat +"&field3=0.0&field4=0.0" + """;

but I can’t get with firebase.
Thanks in advance!

Connecting firebase with at commands httpget.

2

Answers


  1. Chosen as BEST ANSWER

    Solved with sim808 sending to php and Firebase Admin PHP SDK. Thanks. I need to ask about at commands for a9g because TinyGPS sometimes work sometimes not and I do'nt know how to get response "at+location=2" and separate as lat and lng. Thanks


  2. I think you may be referring to the Firebase Realtime Database, in which case all it’s APIs are described in the documentation here. It doesn’t have an API that accepts AT commands, but the closest equivalent is its REST API.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search