├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── instructions ├── README.md ├── configure-the-skill.md ├── create-the-skill.md ├── deploy-the-sample-code.md ├── get-the-sample-source-code.md ├── img │ ├── alexa-sample-smarthome-108x.png │ ├── alexa-sample-smarthome-150x.png │ ├── alexa-sample-smarthome-512x.png │ ├── devices-list.png │ ├── lambda-configure-test-events.png │ ├── lambda-execution-result-succeeded.png │ └── sample-setup-security-profile.png ├── review-the-skill-logs.md ├── setup-login-with-amazon.md ├── setup-the-dynamodb-table.md ├── setup-the-lambda-function.md ├── setup-the-sample-resources.md ├── setup.txt └── test-the-skill.md ├── lambda └── smarthome │ ├── alexa │ └── skills │ │ └── smarthome │ │ └── AlexaResponse.js │ ├── index.js │ ├── package.json │ └── tests │ ├── TestAlexaHandler.js │ └── TestAlexaResponse.js └── skill.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/README.md -------------------------------------------------------------------------------- /instructions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/README.md -------------------------------------------------------------------------------- /instructions/configure-the-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/configure-the-skill.md -------------------------------------------------------------------------------- /instructions/create-the-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/create-the-skill.md -------------------------------------------------------------------------------- /instructions/deploy-the-sample-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/deploy-the-sample-code.md -------------------------------------------------------------------------------- /instructions/get-the-sample-source-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/get-the-sample-source-code.md -------------------------------------------------------------------------------- /instructions/img/alexa-sample-smarthome-108x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/img/alexa-sample-smarthome-108x.png -------------------------------------------------------------------------------- /instructions/img/alexa-sample-smarthome-150x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/img/alexa-sample-smarthome-150x.png -------------------------------------------------------------------------------- /instructions/img/alexa-sample-smarthome-512x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/img/alexa-sample-smarthome-512x.png -------------------------------------------------------------------------------- /instructions/img/devices-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/img/devices-list.png -------------------------------------------------------------------------------- /instructions/img/lambda-configure-test-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/img/lambda-configure-test-events.png -------------------------------------------------------------------------------- /instructions/img/lambda-execution-result-succeeded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/img/lambda-execution-result-succeeded.png -------------------------------------------------------------------------------- /instructions/img/sample-setup-security-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/img/sample-setup-security-profile.png -------------------------------------------------------------------------------- /instructions/review-the-skill-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/review-the-skill-logs.md -------------------------------------------------------------------------------- /instructions/setup-login-with-amazon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/setup-login-with-amazon.md -------------------------------------------------------------------------------- /instructions/setup-the-dynamodb-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/setup-the-dynamodb-table.md -------------------------------------------------------------------------------- /instructions/setup-the-lambda-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/setup-the-lambda-function.md -------------------------------------------------------------------------------- /instructions/setup-the-sample-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/setup-the-sample-resources.md -------------------------------------------------------------------------------- /instructions/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/setup.txt -------------------------------------------------------------------------------- /instructions/test-the-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/instructions/test-the-skill.md -------------------------------------------------------------------------------- /lambda/smarthome/alexa/skills/smarthome/AlexaResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/lambda/smarthome/alexa/skills/smarthome/AlexaResponse.js -------------------------------------------------------------------------------- /lambda/smarthome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/lambda/smarthome/index.js -------------------------------------------------------------------------------- /lambda/smarthome/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/lambda/smarthome/package.json -------------------------------------------------------------------------------- /lambda/smarthome/tests/TestAlexaHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/lambda/smarthome/tests/TestAlexaHandler.js -------------------------------------------------------------------------------- /lambda/smarthome/tests/TestAlexaResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/lambda/smarthome/tests/TestAlexaResponse.js -------------------------------------------------------------------------------- /skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-nodejs-smarthome-switch/HEAD/skill.json --------------------------------------------------------------------------------