Reputation: 828
I am new to arduino programming and I was wondering if I could use Arduino API's and Json to send information stored on an Arduino Uno to Azure, For example my Arduino board is meant to have a person's name and their ID number which When they press the button they send their name and ID to the Azure tables.
Upvotes: 1
Views: 1166
Reputation: 2693
Yes, you can use Azure Table Service REST API. Details of how to insert entity to table can be found here:
The Insert Entity operation sends the entity to be inserted as an OData entity, which is either a JSON or an Atom feed
it's not completely straight forward ( you have to handle authentication and build OData entity) but it's possible.
Have a look at this - Connecting the Arduino Uno to Azure Mobile Services. This does not use Table Service REST API but principle is the same
Upvotes: 2