QuickFix wrote:BRV64 wrote:Arduino is not an option
Not sure what to think of this...
You are aware that I was referring to the Arduino IDE with ESP-core (the software product), not an Arduino board (the hardware with Atmel controller)?
So you write your own firmware (using the Arduino IDE) in C/C++ and flash it into the ESP.
This code would accept requests as serial (or if you'd like I2C, SPI, parallel, ...) data, forms that into a valid request Google understands and do a POST to the Google Sheets-server.
I managed to upload data to Ubidots with the following
AT+CIPSTART="TCP","things.ubidots.com",80
AT+CIPSEND=204
POST /api/v1.6/variables/VAR_ID/values/?token=TOKEN HTTP/1.1
Host: things.ubidots.com
Content-Type: application/json
Content-Length: 17
{"value": "36.8"}
From there send it to google sheets, but It's just a way around the problem.
Hope I could get a protocol like this for google sheets.