-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lilygo sim7000 directly to google sheets #1
Comments
Yup I'll be glad to help. I'll get back to you after I check out the links you sent me.
Bob
…Sent from my Galaxy
-------- Original message --------
From: Fishtronics ***@***.***>
Date: 6/23/22 17:36 (GMT-05:00)
To: Bobbo117/Cellular-IoT-Monitor ***@***.***>
Cc: Subscribed ***@***.***>
Subject: [Bobbo117/Cellular-IoT-Monitor] lilygo sim7000 directly to google sheets (Issue #1)
Hi
I bought the LilyGO-T-SIM7000G and i am trying to send data to google spreadsheet with it see link:https://www.electroniclinic.com/google-spreadsheet-or-google-sheets-with-esp8266-nodemcu-for-data-logging/
but the example shows only how to do it via wifi not via a sim card.
I Have tested the lilygo see link: https://github.com/Xinyuan-LilyGO/LilyGO-T-SIM7000G/blob/master/examples/Arduino_TinyGSM/AllFunctions/AllFunctions.ino
works fine but I don't know how to get it work with the google spreadsheet without the help of a 3rd sever for example fttt?
Is this possible?
Can you please help me?
—
Reply to this email directly, view it on GitHub<#1>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AN65CF7ADCQK7HV362ZDCRDVQTKHJANCNFSM5ZVYGHNA>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Hi,
The code in PostHeartbeatData() in the AmbientHUB src code will give you an idea of how to handle it. Basically, you want to send the url using the following AT commands:
int err = sendATCmd("AT+HTTPTERM","","");
err = sendATCmd("AT+HTTPINIT","","");
err = sendATCmd("AT+HTTPPARA","=CID","1");
err = sendATCmd("AT+HTTPPARA","=URL",URL);
delay(2000);
err = sendATCmd("AT+HTTPACTION","=0","");
err = sendATCmd("AT+HTTPTERM","","");
I like the approach of going directly to sheets without ifttt, will implement it in the next few weeks when I get a chance.
Bob
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows
From: Bob ***@***.***>
Sent: Thursday, June 23, 2022 5:46 PM
To: ***@***.***>; ***@***.***>
Cc: ***@***.***>
Subject: RE: [Bobbo117/Cellular-IoT-Monitor] lilygo sim7000 directly to google sheets (Issue #1)
Yup I'll be glad to help. I'll get back to you after I check out the links you sent me.
Bob
…Sent from my Galaxy
-------- Original message --------
From: Fishtronics ***@***.***>
Date: 6/23/22 17:36 (GMT-05:00)
To: Bobbo117/Cellular-IoT-Monitor ***@***.***>
Cc: Subscribed ***@***.***>
Subject: [Bobbo117/Cellular-IoT-Monitor] lilygo sim7000 directly to google sheets (Issue #1)
Hi
I bought the LilyGO-T-SIM7000G and i am trying to send data to google spreadsheet with it see link:https://www.electroniclinic.com/google-spreadsheet-or-google-sheets-with-esp8266-nodemcu-for-data-logging/
but the example shows only how to do it via wifi not via a sim card.
I Have tested the lilygo see link: https://github.com/Xinyuan-LilyGO/LilyGO-T-SIM7000G/blob/master/examples/Arduino_TinyGSM/AllFunctions/AllFunctions.ino
works fine but I don't know how to get it work with the google spreadsheet without the help of a 3rd sever for example fttt?
Is this possible?
Can you please help me?
—
Reply to this email directly, view it on GitHub<#1>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AN65CF7ADCQK7HV362ZDCRDVQTKHJANCNFSM5ZVYGHNA>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Hi |
Hi |
Hi, Did you ever resolve this issue?
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows
From: ***@***.***>
Sent: Monday, June 27, 2022 12:38 PM
To: ***@***.***>
Cc: Bob ***@***.***>; ***@***.***>
Subject: Re: [Bobbo117/Cellular-IoT-Monitor] lilygo sim7000 directly to google sheets (Issue #1)
Hi
also have a look at my question on the Arduino forum https://forum.arduino.cc/t/sim7000-upload-to-google-spreadsheet/1002728/4
—
Reply to this email directly, view it on GitHub<#1 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AN65CF7ZXPWVRJBGUDXKNTTVRHKJFANCNFSM5ZVYGHNA>.
You are receiving this because you were assigned.Message ID: ***@***.***>
|
Hi |
maybe something todo with puting the google certificat straith to the device trhoug the other usb see https://github.com/Xinyuan-LilyGO/LilyGO-T-SIM7000G/blob/master/docs/How%20to%20update%20firmware.md |
Hi
I bought the LilyGO-T-SIM7000G and i am trying to send data to google spreadsheet with it see link:https://www.electroniclinic.com/google-spreadsheet-or-google-sheets-with-esp8266-nodemcu-for-data-logging/
but the example shows only how to do it via wifi not via a sim card.
I Have tested the lilygo see link: https://github.com/Xinyuan-LilyGO/LilyGO-T-SIM7000G/blob/master/examples/Arduino_TinyGSM/AllFunctions/AllFunctions.ino
works fine but I don't know how to get it work with the google spreadsheet without the help of a 3rd sever for example fttt?
Is this possible?
Can you please help me?
The text was updated successfully, but these errors were encountered: