AWS IOT の Device Shadow
次のページを参考にしました。
AWS IoTのThing Shadowsを図と実行例で理解する
次のバージョンで確認しました。
$ aws --version
aws-cli/2.2.41 Python/3.8.8 Linux/5.14.7-arch1-1 exe/x86_64.arch prompt/off
Thing の作成
create_thing.sh
THING="sample_sep26"
aws iot create-thing --thing-name ${THING}
Thing の一覧
list_things.sh
aws iot list-things | grep thingName
Thing の削除
delete_thing.sh
THING="sample_sep26"
aws iot delete-thing --thing-name ${THING}
Unnamed (classic) Shadow を作成します。
デバイスの状態が OFF であることを通知
report_off_thing.sh
THING="sample_sep26"
#
aws iot-data update-thing-shadow --thing-name ${THING} \
--cli-binary-format raw-in-base64-out \
--payload '{"state": {"reported" : {"led" : "off"}}}' \
report01.json
デバイスの状態が ON であることを通知
report_on_thing.sh
THING="sample_sep26"
#
aws iot-data update-thing-shadow --thing-name ${THING} \
--cli-binary-format raw-in-base64-out \
--payload '{"state": {"reported" : {"led" : "on"}}}' \
report02.json
デバイスを OFF にするように指令
command_off_thing.sh
THING="sample_sep26"
#
aws iot-data update-thing-shadow --thing-name ${THING} \
--cli-binary-format raw-in-base64-out \
--payload '{"state": {"desired" : {"led" : "off"}}}' \
command01.json
デバイスを ON にするように指令
command_on_thing.sh
THING="sample_sep26"
#
aws iot-data update-thing-shadow --thing-name ${THING} \
--cli-binary-format raw-in-base64-out \
--payload '{"state": {"desired" : {"led" : "on"}}}' \
command01.json
Shadow の状態を取得
get_shadow.sh
THING="sample_sep26"
#
aws iot-data get-thing-shadow --thing-name ${THING} outfile.json
Author And Source
この問題について(AWS IOT の Device Shadow), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/1d6bbc68703aa646380f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .