├── .gitignore ├── LICENSE ├── README.md ├── alexa_helper.py ├── auth_web.py ├── example_creds.py ├── hello.mp3 ├── initd_alexa.sh ├── main.py ├── requirements.txt ├── reset_alexa.sh └── setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/README.md -------------------------------------------------------------------------------- /alexa_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/alexa_helper.py -------------------------------------------------------------------------------- /auth_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/auth_web.py -------------------------------------------------------------------------------- /example_creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/example_creds.py -------------------------------------------------------------------------------- /hello.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/hello.mp3 -------------------------------------------------------------------------------- /initd_alexa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/initd_alexa.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/requirements.txt -------------------------------------------------------------------------------- /reset_alexa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/reset_alexa.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-raspberry-pi-guy/Artificial-Intelligence-Pi/HEAD/setup.sh --------------------------------------------------------------------------------