-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ad1fa0
commit 71611e0
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ the `AWS_IOT` class from the client code. This makes the library easier usable. | |
* [Create thing](#create-thing) | ||
* [MQTT endpoint](#mqtt-endpoint) | ||
* [Attach a policy to your thing](#attach-a-policy-to-your-thing) | ||
* [Author](#author) | ||
|
||
<!-- vim-markdown-toc --> | ||
|
||
|
@@ -52,6 +53,8 @@ A plattformio [project](platformio.ini) and [Makefile](Makefile) is provided. | |
|
||
## AWS IoT core notes | ||
|
||
**work in progress** | ||
|
||
### Create thing | ||
|
||
```shell | ||
|
@@ -160,4 +163,7 @@ $ aws iot attach-policy --policy-name "iot-full-permissions" \ | |
$ aws iot list-targets-for-policy --policy-name iot-full-permissions | ||
``` | ||
|
||
## Author | ||
|
||
Jan Delgado <[email protected]>, original work from https://github.com/ExploreEmbedded/Hornbill-Examples. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name=ESP32AwsIotCore | ||
version=v0.1.0 | ||
author=Jan Delgado <jdelgado[at]gmx.net> | ||
maintainer=Jan Delgado <jdelgado[at]gmx.net> | ||
sentence=Use AWS IOT with the ESP32 | ||
paragraph=Easily attach your ESP32 to the AWS IOT cloud. Derived from hornbill examples. | ||
category=Data Processing | ||
url=https://github.com/jandelgado/esp32-aws-iot | ||
architectures=esp32 | ||
includes=AWS_IOT.h | ||
|