├── .gitattributes ├── .gitignore ├── ASK ├── speechAssets │ ├── IntentSchema.json │ └── SampleUtterances.txt └── src │ ├── AlexaSkill.js │ └── index.js ├── README.md ├── firmware ├── DHT.cpp ├── DHT.h └── alexa.ino └── screenshots ├── fritzing.png └── image.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/.gitignore -------------------------------------------------------------------------------- /ASK/speechAssets/IntentSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/ASK/speechAssets/IntentSchema.json -------------------------------------------------------------------------------- /ASK/speechAssets/SampleUtterances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/ASK/speechAssets/SampleUtterances.txt -------------------------------------------------------------------------------- /ASK/src/AlexaSkill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/ASK/src/AlexaSkill.js -------------------------------------------------------------------------------- /ASK/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/ASK/src/index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/README.md -------------------------------------------------------------------------------- /firmware/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/firmware/DHT.cpp -------------------------------------------------------------------------------- /firmware/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/firmware/DHT.h -------------------------------------------------------------------------------- /firmware/alexa.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/firmware/alexa.ino -------------------------------------------------------------------------------- /screenshots/fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/screenshots/fritzing.png -------------------------------------------------------------------------------- /screenshots/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/Particle_Alexa/HEAD/screenshots/image.jpg --------------------------------------------------------------------------------