OVMS3-idf/examples/protocols/aws_iot/thing_shadow
Renz Christian Bagaporo 37d30c7a6e cmake: separate app from idf lib project
mbedtls: import mbedtls using unmodified cmake file
2018-11-27 13:59:24 +08:00
..
main cmake: separate app from idf lib project 2018-11-27 13:59:24 +08:00
CMakeLists.txt cmake: make main a component again 2018-09-11 09:44:12 +08:00
Makefile asio: examples renamed to have consistent binary names when build in make and CMake 2018-10-17 15:00:26 +02:00
README.md AWS IoT Device SDK Support 2017-03-13 17:23:29 +08:00
sdkconfig.defaults aws_iot: optimize dynamic memory by tweaking tls out buf content length 2018-09-24 11:17:53 +05:30

Amazon Web Services IoT Thing Shadow Example

This is an adaptation of the AWS IoT C SDK "shadow_sample" example for ESP-IDF.

Provisioning/Configuration

See the README.md in the parent directory for information about configuring the AWS IoT examples.

After following those steps, there is one additional step for this exmaple:

Set Thing Name

For this example, you will need to set a Thing Name under make menuconfig -> Example Configuration -> AWS IoT Thing Name.

The Thing Name should match a Thing that you created while following the Getting Started guide (to check the Things you have registered, go t othe AWS IoT console web interface, click Registry and then click Things).

Monitoring Thing Status

After flashing the example to your ESP32, it should connect to Amazon and start updating the example Thing's shadow.

In the ESP32's serial output, you should see the message "Update accepted" logged every couple of seconds.

You can monitor the Thing status from the AWS IoT console web interface:

  • On the left-hand toolbar, click Registry and then click Things.
  • Click on the "Thing" you set up for the example.
  • Click on the "Shadow" sidebar link. You should see the Thing Shadow updating regularly.
  • Click on the "Activity" sidebar link to see all Thing Shadow updates in a list. You can examine each update individually.

Troubleshooting

If you're having problems with the AWS IoT connection itself, check the Troubleshooting section of the README in the parent directory.

  • If your Thing is connecting and appears to be successfully updating, but you don't see any updates in the AWS IoT console, then check that the Thing Name in the Example Configuration under menuconfig matches exactly the thing name in AWS IoT console (including case).