├── LICENSE ├── README.md ├── __init__.py ├── dialog └── en-us │ ├── cmd.sent.dialog │ └── not.found.dialog ├── requirements.txt ├── test └── intent │ ├── sample1.intent.json │ ├── sample2.intent.json │ ├── sample3.intent.json │ └── sample4.intent.json └── vocab └── en-us ├── ActionKeyword.voc ├── CommandKeyword.voc └── ModuleKeyword.voc /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/__init__.py -------------------------------------------------------------------------------- /dialog/en-us/cmd.sent.dialog: -------------------------------------------------------------------------------- 1 | The command was sent. 2 | I have done that for you. 3 | -------------------------------------------------------------------------------- /dialog/en-us/not.found.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/dialog/en-us/not.found.dialog -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | paho-mqtt 2 | -------------------------------------------------------------------------------- /test/intent/sample1.intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/test/intent/sample1.intent.json -------------------------------------------------------------------------------- /test/intent/sample2.intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/test/intent/sample2.intent.json -------------------------------------------------------------------------------- /test/intent/sample3.intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/test/intent/sample3.intent.json -------------------------------------------------------------------------------- /test/intent/sample4.intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/test/intent/sample4.intent.json -------------------------------------------------------------------------------- /vocab/en-us/ActionKeyword.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/vocab/en-us/ActionKeyword.voc -------------------------------------------------------------------------------- /vocab/en-us/CommandKeyword.voc: -------------------------------------------------------------------------------- 1 | turn 2 | power 3 | switch 4 | command 5 | -------------------------------------------------------------------------------- /vocab/en-us/ModuleKeyword.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiehoward430/mycroft-mymqtt/HEAD/vocab/en-us/ModuleKeyword.voc --------------------------------------------------------------------------------