I'm working on a project that uses Arduino 101 and Wifi Shield 101 that will write data to AWS DynamoDB table. So far I haven't found any kind of guide or article that shows if this is possible. I've read intel curie boards are compatible with AWS IoT SDK but I haven't found clear instruction on how to set up and and get it running.
Please any help or reference will be appreciated.
I am also looking for the same, I would really appreciate if some can through some light on this topic.
@seaurchin
@immelak
May this link be of help to you?
#include "AmazonDynamoDBClient.h"
#include "SparkAWSImplementations.h"
#include "AWSFoundationalTypes.h"
#include "keys.h"
/*
*
* This sample uses PutItem on a DynamoDB to record every time a button is
* pressed (or a tilt switch is tilted if using one instead of a button).
*
* For this demo to work you must have keys.h/.ccp files that contain your AWS
* access keys and define "awsSecKey" and "awsKeyID", a DynamoDB table with the
* name defined by the constant TABLE_NAME with hash and range keys as defined
* by constants HASH_KEY_NAME/RANGE_KEY_NAME.
*
*/
/* D2 is the pin connected to the tilt switch. For buttons or tilt switches,
* have the pin connected to one side of the button and also connected to
* ground with a resistor. Have the other side of the button connected to
This file has been truncated. show original