This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AWS-IoT shadow-sample example development

Other Parts Discussed in Thread: CC3200

Hello,

How can I make changes in the existing code to add more variables to the JSON shadow?. I  can add more variables in the JSON file in the AWS Cloud by updating the shadow in the Thing Details section but not able to do the same from the device end.

I am developing an application from TI's SDK for AWS-IoT using CC3200. I am now able to run subscribe_publish_sample verifying my connection to AWS-IoT. I am also able to run shadow_sample example and integrated the in-built accelerometer (bma222) sensor to AWS-IoT and updating the variable windowOpen based on the board movements. 

I wanted to add more variables to the existing JSON document

{
  "reported": {
  "temperature": 0,
  "windowOpen": false
 },
  "desired": {
  "windowOpen": false
  }
  } 

I tried searching for JsonDocumentBuffer  in the SDK but not able to find it. Where can I find it?

Thank You