├── .gitattributes ├── Chapter01 └── comp-demo.js ├── Chapter02 ├── .DS_Store ├── ArduinoDHT │ └── ArduinoDHT.ino ├── BasicPubSub │ ├── BasicPubSub.ino │ └── aws_iot_config.h ├── IoTNode │ ├── IoTNode.ino │ └── aws_iot_config.h └── sensor-subscriber.js ├── Chapter04 ├── .DS_Store ├── IoTNode │ ├── IoTNode.ino │ └── aws_iot_config.h └── greengrass │ ├── .DS_Store │ ├── blinking │ ├── .DS_Store │ ├── blinking.zip │ ├── index.js │ └── node_modules │ │ ├── .DS_Store │ │ ├── aws-greengrass-core-sdk │ │ ├── Greengrass AWS SW License (IoT additiona) vr6.txt │ │ ├── index.js │ │ ├── iotdata.js │ │ ├── lambda.js │ │ └── util.js │ │ ├── bindings │ │ ├── README.md │ │ ├── bindings.js │ │ └── package.json │ │ ├── nan │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── doc │ │ │ ├── asyncworker.md │ │ │ ├── buffers.md │ │ │ ├── callback.md │ │ │ ├── converters.md │ │ │ ├── errors.md │ │ │ ├── json.md │ │ │ ├── maybe_types.md │ │ │ ├── methods.md │ │ │ ├── new.md │ │ │ ├── node_misc.md │ │ │ ├── object_wrappers.md │ │ │ ├── persistent.md │ │ │ ├── scopes.md │ │ │ ├── script.md │ │ │ ├── string_bytes.md │ │ │ ├── v8_internals.md │ │ │ └── v8_misc.md │ │ ├── include_dirs.js │ │ ├── nan.h │ │ ├── nan_callbacks.h │ │ ├── nan_callbacks_12_inl.h │ │ ├── nan_callbacks_pre_12_inl.h │ │ ├── nan_converters.h │ │ ├── nan_converters_43_inl.h │ │ ├── nan_converters_pre_43_inl.h │ │ ├── nan_implementation_12_inl.h │ │ ├── nan_implementation_pre_12_inl.h │ │ ├── nan_json.h │ │ ├── nan_maybe_43_inl.h │ │ ├── nan_maybe_pre_43_inl.h │ │ ├── nan_new.h │ │ ├── nan_object_wrap.h │ │ ├── nan_persistent_12_inl.h │ │ ├── nan_persistent_pre_12_inl.h │ │ ├── nan_private.h │ │ ├── nan_string_bytes.h │ │ ├── nan_typedarray_contents.h │ │ ├── nan_weak.h │ │ ├── package.json │ │ └── tools │ │ │ ├── 1to2.js │ │ │ ├── README.md │ │ │ └── package.json │ │ └── rpio │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── binding.gyp │ │ ├── build │ │ ├── Makefile │ │ ├── Release │ │ │ ├── .deps │ │ │ │ └── Release │ │ │ │ │ ├── obj.target │ │ │ │ │ ├── rpio.node.d │ │ │ │ │ └── rpio │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── bcm2835.o.d │ │ │ │ │ │ └── rpio.o.d │ │ │ │ │ └── rpio.node.d │ │ │ ├── obj.target │ │ │ │ ├── rpio.node │ │ │ │ └── rpio │ │ │ │ │ └── src │ │ │ │ │ ├── bcm2835.o │ │ │ │ │ └── rpio.o │ │ │ └── rpio.node │ │ ├── binding.Makefile │ │ ├── config.gypi │ │ └── rpio.target.mk │ │ ├── examples │ │ ├── blink.js │ │ ├── button.js │ │ ├── dht11.js │ │ ├── i2c-lcd.js │ │ ├── padcontrol.js │ │ ├── pwm-led.js │ │ └── spi-at93c46.js │ │ ├── lib │ │ └── rpio.js │ │ ├── package.json │ │ └── src │ │ ├── bcm2835.c │ │ ├── bcm2835.h │ │ └── rpio.cc │ ├── greengrassHelloWorld.py │ ├── interacting │ ├── .DS_Store │ └── basicDiscovery.py │ ├── invoker.js │ ├── lambda_invoker.js │ ├── package.json │ └── test-greengrass.py ├── Chapter05 ├── aws-iot-button-lambda.js └── iot-button │ ├── .DS_Store │ ├── aws-iot-pi.js │ ├── package.json │ └── root-ca-cert.pem ├── Chapter06 ├── .DS_Store ├── sensor-publisher.js └── visualization │ ├── .DS_Store │ ├── .idea │ ├── encodings.xml │ ├── jsLibraryMappings.xml │ ├── libraries │ │ └── jquery.xml │ ├── misc.xml │ ├── modules.xml │ ├── visualization.iml │ ├── watcherTasks.xml │ └── workspace.xml │ ├── aws-iot-visualz │ ├── .DS_Store │ ├── aws-configuration.js │ ├── bundle.js │ ├── entry.js │ ├── index.html │ ├── jquery-3.2.1.js │ ├── jquery.flot.js │ ├── package-lock.json │ ├── package.json │ └── webpack.config.js │ ├── chartjs.html │ ├── d3demo.html │ ├── data.json │ ├── flotdemo.html │ ├── libs │ ├── Chart.js │ ├── d3.js │ ├── d3.min.js │ ├── jquery-3.2.1.js │ ├── jquery-3.2.1.min.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.js │ └── jquery.flot.resize.js │ └── sensor │ ├── .DS_Store │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── public │ ├── index.html │ └── js │ ├── jquery-3.2.1.js │ └── jquery.flot.js ├── Chapter07 ├── .DS_Store ├── alexa-demo.js ├── aws-polly-demo.js ├── fxalexa.js ├── object-rekognition.js ├── package.json ├── sensor-speaker.js └── upload-s3.js ├── LICENSE ├── README.md └── __MACOSX ├── Chapter02 ├── ._.DS_Store ├── ._BasicPubSub └── BasicPubSub │ └── ._BasicPubSub.ino ├── Chapter04 ├── ._.DS_Store └── greengrass │ ├── ._.DS_Store │ ├── ._greengrassHelloWorld.py │ ├── ._invoker.js │ ├── blinking │ ├── ._.DS_Store │ └── node_modules │ │ ├── ._.DS_Store │ │ ├── ._aws-greengrass-core-sdk │ │ └── aws-greengrass-core-sdk │ │ ├── ._Greengrass AWS SW License (IoT additiona) vr6.txt │ │ ├── ._index.js │ │ ├── ._iotdata.js │ │ ├── ._lambda.js │ │ └── ._util.js │ └── interacting │ ├── ._.DS_Store │ └── ._basicDiscovery.py ├── Chapter05 └── iot-button │ └── ._.DS_Store ├── Chapter06 ├── ._.DS_Store └── visualization │ ├── ._.DS_Store │ ├── ._aws-iot-visualz │ ├── aws-iot-visualz │ ├── ._.DS_Store │ ├── ._jquery-3.2.1.js │ ├── ._jquery.flot.js │ └── ._webpack.config.js │ ├── libs │ ├── ._Chart.js │ ├── ._d3.js │ ├── ._d3.min.js │ ├── ._jquery-3.2.1.js │ ├── ._jquery-3.2.1.min.js │ ├── ._jquery.flot.canvas.js │ ├── ._jquery.flot.js │ └── ._jquery.flot.resize.js │ └── sensor │ ├── ._.DS_Store │ └── public │ └── js │ ├── ._jquery-3.2.1.js │ └── ._jquery.flot.js └── Chapter07 └── ._.DS_Store /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/.gitattributes -------------------------------------------------------------------------------- /Chapter01/comp-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter01/comp-demo.js -------------------------------------------------------------------------------- /Chapter02/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter02/.DS_Store -------------------------------------------------------------------------------- /Chapter02/ArduinoDHT/ArduinoDHT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter02/ArduinoDHT/ArduinoDHT.ino -------------------------------------------------------------------------------- /Chapter02/BasicPubSub/BasicPubSub.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter02/BasicPubSub/BasicPubSub.ino -------------------------------------------------------------------------------- /Chapter02/BasicPubSub/aws_iot_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter02/BasicPubSub/aws_iot_config.h -------------------------------------------------------------------------------- /Chapter02/IoTNode/IoTNode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter02/IoTNode/IoTNode.ino -------------------------------------------------------------------------------- /Chapter02/IoTNode/aws_iot_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter02/IoTNode/aws_iot_config.h -------------------------------------------------------------------------------- /Chapter02/sensor-subscriber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter02/sensor-subscriber.js -------------------------------------------------------------------------------- /Chapter04/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/.DS_Store -------------------------------------------------------------------------------- /Chapter04/IoTNode/IoTNode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/IoTNode/IoTNode.ino -------------------------------------------------------------------------------- /Chapter04/IoTNode/aws_iot_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/IoTNode/aws_iot_config.h -------------------------------------------------------------------------------- /Chapter04/greengrass/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/.DS_Store -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/.DS_Store -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/blinking.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/blinking.zip -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/index.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/.DS_Store -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/Greengrass AWS SW License (IoT additiona) vr6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/Greengrass AWS SW License (IoT additiona) vr6.txt -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/index.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/iotdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/iotdata.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/lambda.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/util.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/bindings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/bindings/README.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/bindings/bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/bindings/bindings.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/bindings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/bindings/package.json -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/LICENSE.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/README.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/asyncworker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/asyncworker.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/buffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/buffers.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/callback.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/converters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/converters.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/errors.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/json.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/maybe_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/maybe_types.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/methods.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/new.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/node_misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/node_misc.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/object_wrappers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/object_wrappers.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/persistent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/persistent.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/scopes.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/script.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/string_bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/string_bytes.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/v8_internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/v8_internals.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/doc/v8_misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/doc/v8_misc.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/include_dirs.js: -------------------------------------------------------------------------------- 1 | console.log(require('path').relative('.', __dirname)); 2 | -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_callbacks.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_callbacks_12_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_callbacks_12_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_callbacks_pre_12_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_callbacks_pre_12_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_converters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_converters.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_converters_43_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_converters_43_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_converters_pre_43_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_converters_pre_43_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_implementation_12_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_implementation_12_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_implementation_pre_12_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_implementation_pre_12_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_json.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_maybe_43_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_maybe_43_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_maybe_pre_43_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_maybe_pre_43_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_new.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_object_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_object_wrap.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_persistent_12_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_persistent_12_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_persistent_pre_12_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_persistent_pre_12_inl.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_private.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_string_bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_string_bytes.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_typedarray_contents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_typedarray_contents.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/nan_weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/nan_weak.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/package.json -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/tools/1to2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/tools/1to2.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/tools/README.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/nan/tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/nan/tools/package.json -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/.travis.yml -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/README.md -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/binding.gyp -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/Makefile -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/Release/.deps/Release/obj.target/rpio.node.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/Release/.deps/Release/obj.target/rpio.node.d -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/Release/.deps/Release/obj.target/rpio/src/bcm2835.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/Release/.deps/Release/obj.target/rpio/src/bcm2835.o.d -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/Release/.deps/Release/obj.target/rpio/src/rpio.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/Release/.deps/Release/obj.target/rpio/src/rpio.o.d -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/Release/.deps/Release/rpio.node.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/Release/.deps/Release/rpio.node.d -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/Release/obj.target/rpio.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/Release/obj.target/rpio.node -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/Release/obj.target/rpio/src/bcm2835.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/Release/obj.target/rpio/src/bcm2835.o -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/Release/obj.target/rpio/src/rpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/Release/obj.target/rpio/src/rpio.o -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/Release/rpio.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/Release/rpio.node -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/binding.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/binding.Makefile -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/config.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/config.gypi -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/build/rpio.target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/build/rpio.target.mk -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/examples/blink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/examples/blink.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/examples/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/examples/button.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/examples/dht11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/examples/dht11.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/examples/i2c-lcd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/examples/i2c-lcd.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/examples/padcontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/examples/padcontrol.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/examples/pwm-led.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/examples/pwm-led.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/examples/spi-at93c46.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/examples/spi-at93c46.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/lib/rpio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/lib/rpio.js -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/package.json -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/src/bcm2835.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/src/bcm2835.c -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/src/bcm2835.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/src/bcm2835.h -------------------------------------------------------------------------------- /Chapter04/greengrass/blinking/node_modules/rpio/src/rpio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/blinking/node_modules/rpio/src/rpio.cc -------------------------------------------------------------------------------- /Chapter04/greengrass/greengrassHelloWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/greengrassHelloWorld.py -------------------------------------------------------------------------------- /Chapter04/greengrass/interacting/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/interacting/.DS_Store -------------------------------------------------------------------------------- /Chapter04/greengrass/interacting/basicDiscovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/interacting/basicDiscovery.py -------------------------------------------------------------------------------- /Chapter04/greengrass/invoker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/invoker.js -------------------------------------------------------------------------------- /Chapter04/greengrass/lambda_invoker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/lambda_invoker.js -------------------------------------------------------------------------------- /Chapter04/greengrass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/package.json -------------------------------------------------------------------------------- /Chapter04/greengrass/test-greengrass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter04/greengrass/test-greengrass.py -------------------------------------------------------------------------------- /Chapter05/aws-iot-button-lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter05/aws-iot-button-lambda.js -------------------------------------------------------------------------------- /Chapter05/iot-button/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter05/iot-button/.DS_Store -------------------------------------------------------------------------------- /Chapter05/iot-button/aws-iot-pi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter05/iot-button/aws-iot-pi.js -------------------------------------------------------------------------------- /Chapter05/iot-button/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter05/iot-button/package.json -------------------------------------------------------------------------------- /Chapter05/iot-button/root-ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter05/iot-button/root-ca-cert.pem -------------------------------------------------------------------------------- /Chapter06/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/.DS_Store -------------------------------------------------------------------------------- /Chapter06/sensor-publisher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/sensor-publisher.js -------------------------------------------------------------------------------- /Chapter06/visualization/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/.DS_Store -------------------------------------------------------------------------------- /Chapter06/visualization/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/.idea/encodings.xml -------------------------------------------------------------------------------- /Chapter06/visualization/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /Chapter06/visualization/.idea/libraries/jquery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/.idea/libraries/jquery.xml -------------------------------------------------------------------------------- /Chapter06/visualization/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter06/visualization/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter06/visualization/.idea/visualization.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/.idea/visualization.iml -------------------------------------------------------------------------------- /Chapter06/visualization/.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /Chapter06/visualization/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/.DS_Store -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/aws-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/aws-configuration.js -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/bundle.js -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/entry.js -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/index.html -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/jquery-3.2.1.js -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/jquery.flot.js -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/package-lock.json -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/package.json -------------------------------------------------------------------------------- /Chapter06/visualization/aws-iot-visualz/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/aws-iot-visualz/webpack.config.js -------------------------------------------------------------------------------- /Chapter06/visualization/chartjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/chartjs.html -------------------------------------------------------------------------------- /Chapter06/visualization/d3demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/d3demo.html -------------------------------------------------------------------------------- /Chapter06/visualization/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/data.json -------------------------------------------------------------------------------- /Chapter06/visualization/flotdemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/flotdemo.html -------------------------------------------------------------------------------- /Chapter06/visualization/libs/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/libs/Chart.js -------------------------------------------------------------------------------- /Chapter06/visualization/libs/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/libs/d3.js -------------------------------------------------------------------------------- /Chapter06/visualization/libs/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/libs/d3.min.js -------------------------------------------------------------------------------- /Chapter06/visualization/libs/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/libs/jquery-3.2.1.js -------------------------------------------------------------------------------- /Chapter06/visualization/libs/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/libs/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /Chapter06/visualization/libs/jquery.flot.canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/libs/jquery.flot.canvas.js -------------------------------------------------------------------------------- /Chapter06/visualization/libs/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/libs/jquery.flot.js -------------------------------------------------------------------------------- /Chapter06/visualization/libs/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/libs/jquery.flot.resize.js -------------------------------------------------------------------------------- /Chapter06/visualization/sensor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/sensor/.DS_Store -------------------------------------------------------------------------------- /Chapter06/visualization/sensor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/sensor/index.js -------------------------------------------------------------------------------- /Chapter06/visualization/sensor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/sensor/package-lock.json -------------------------------------------------------------------------------- /Chapter06/visualization/sensor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/sensor/package.json -------------------------------------------------------------------------------- /Chapter06/visualization/sensor/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/sensor/public/index.html -------------------------------------------------------------------------------- /Chapter06/visualization/sensor/public/js/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/sensor/public/js/jquery-3.2.1.js -------------------------------------------------------------------------------- /Chapter06/visualization/sensor/public/js/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter06/visualization/sensor/public/js/jquery.flot.js -------------------------------------------------------------------------------- /Chapter07/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter07/.DS_Store -------------------------------------------------------------------------------- /Chapter07/alexa-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter07/alexa-demo.js -------------------------------------------------------------------------------- /Chapter07/aws-polly-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter07/aws-polly-demo.js -------------------------------------------------------------------------------- /Chapter07/fxalexa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter07/fxalexa.js -------------------------------------------------------------------------------- /Chapter07/object-rekognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter07/object-rekognition.js -------------------------------------------------------------------------------- /Chapter07/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter07/package.json -------------------------------------------------------------------------------- /Chapter07/sensor-speaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter07/sensor-speaker.js -------------------------------------------------------------------------------- /Chapter07/upload-s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/Chapter07/upload-s3.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/README.md -------------------------------------------------------------------------------- /__MACOSX/Chapter02/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter02/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter02/._BasicPubSub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter02/._BasicPubSub -------------------------------------------------------------------------------- /__MACOSX/Chapter02/BasicPubSub/._BasicPubSub.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter02/BasicPubSub/._BasicPubSub.ino -------------------------------------------------------------------------------- /__MACOSX/Chapter04/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/._greengrassHelloWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/._greengrassHelloWorld.py -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/._invoker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/._invoker.js -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/blinking/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/blinking/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/blinking/node_modules/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/blinking/node_modules/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/blinking/node_modules/._aws-greengrass-core-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/blinking/node_modules/._aws-greengrass-core-sdk -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._Greengrass AWS SW License (IoT additiona) vr6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._Greengrass AWS SW License (IoT additiona) vr6.txt -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._index.js -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._iotdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._iotdata.js -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._lambda.js -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/blinking/node_modules/aws-greengrass-core-sdk/._util.js -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/interacting/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/interacting/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter04/greengrass/interacting/._basicDiscovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter04/greengrass/interacting/._basicDiscovery.py -------------------------------------------------------------------------------- /__MACOSX/Chapter05/iot-button/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter05/iot-button/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter06/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/._aws-iot-visualz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/._aws-iot-visualz -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/aws-iot-visualz/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/aws-iot-visualz/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/aws-iot-visualz/._jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/aws-iot-visualz/._jquery-3.2.1.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/aws-iot-visualz/._jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/aws-iot-visualz/._jquery.flot.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/aws-iot-visualz/._webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/aws-iot-visualz/._webpack.config.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/libs/._Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/libs/._Chart.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/libs/._d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/libs/._d3.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/libs/._d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/libs/._d3.min.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/libs/._jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/libs/._jquery-3.2.1.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/libs/._jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/libs/._jquery-3.2.1.min.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/libs/._jquery.flot.canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/libs/._jquery.flot.canvas.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/libs/._jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/libs/._jquery.flot.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/libs/._jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/libs/._jquery.flot.resize.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/sensor/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/sensor/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/sensor/public/js/._jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/sensor/public/js/._jquery-3.2.1.js -------------------------------------------------------------------------------- /__MACOSX/Chapter06/visualization/sensor/public/js/._jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter06/visualization/sensor/public/js/._jquery.flot.js -------------------------------------------------------------------------------- /__MACOSX/Chapter07/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-AWS-IoT/HEAD/__MACOSX/Chapter07/._.DS_Store --------------------------------------------------------------------------------