Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access Google Drive using Arduino

I am using an Arduino board for data logging. My Arduino is connected to the Internet through a WiFi shield. The Arduino uses a kind of C++ programming language.

Does anybody know how I can access a file from Google Drive using the Arduino?

like image 813
user2023777 Avatar asked Nov 12 '22 12:11

user2023777


1 Answers

If you are using your Arduino for data logging you probably want to log the data your sensors receive and upload it to your google drive account.

Well accesing google drive is no trivial task you need to interface with OAuth protocol so as an alternative you might want to upload to a google docs spreadsheet.

A simple tutorial can be found here

Hope it helps!

like image 162
opc0de Avatar answered Nov 15 '22 08:11

opc0de