├── .gitignore ├── LICENSE ├── README.md ├── _snowboydetect.so ├── _snowboydetect.so_py3 ├── assistant.py ├── gassistant.py ├── models ├── hey_baby.pmdl ├── jarvis.pmdl ├── ok_google.pmdl └── snowboy.umdl ├── resources ├── common.res ├── ding.wav ├── dong.wav └── snowboy.umdl ├── snowboydecoder.py └── snowboydetect.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/README.md -------------------------------------------------------------------------------- /_snowboydetect.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/_snowboydetect.so -------------------------------------------------------------------------------- /_snowboydetect.so_py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/_snowboydetect.so_py3 -------------------------------------------------------------------------------- /assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/assistant.py -------------------------------------------------------------------------------- /gassistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/gassistant.py -------------------------------------------------------------------------------- /models/hey_baby.pmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/models/hey_baby.pmdl -------------------------------------------------------------------------------- /models/jarvis.pmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/models/jarvis.pmdl -------------------------------------------------------------------------------- /models/ok_google.pmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/models/ok_google.pmdl -------------------------------------------------------------------------------- /models/snowboy.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/models/snowboy.umdl -------------------------------------------------------------------------------- /resources/common.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/resources/common.res -------------------------------------------------------------------------------- /resources/ding.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/resources/ding.wav -------------------------------------------------------------------------------- /resources/dong.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/resources/dong.wav -------------------------------------------------------------------------------- /resources/snowboy.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/resources/snowboy.umdl -------------------------------------------------------------------------------- /snowboydecoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/snowboydecoder.py -------------------------------------------------------------------------------- /snowboydetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchildmd/google-assistant-hotword-raspi/HEAD/snowboydetect.py --------------------------------------------------------------------------------