This is written in python, so you will literally only have to clone this repository and install the dependencies.
### Configuration
Create a copy of the file "default-config.py" and name it "config.py" then configure its contents to your needs.
### Setup and Configuration
Run the `setup.sh` script in order to copy the necessary files to `~/.config/roomcomputer/`. If you are planning to create a service for the `speech_daemon.py` with systemd; then you can specify its configuration file as the first argument: `speech_daemon.py /path/to/config/config.json`.
#### Hue Light Controller
You can create presets in the "presets.py" file. Follow this syntax *(and Python syntax of course)*:
#### HUE Lights presets
You can create presets in the `~/.config/roomcomputer/presets.json` file. Follow this syntax *(and JSON syntax of course)*:
```python
PRESETS = {
"mypreset": {
@ -22,7 +21,7 @@ PRESETS = {
### Usage
#### Hue Light Controller
#### HUE Remote
--Help page--
'hue' : Display this help page
'hue light (index)' ... : Specify light target, from 1-3
@ -42,10 +41,11 @@ PRESETS = {
-----------------
For convenience, you can create an alias for the script file. Append this to your shells rc file:
alias hue="/path/to/the/cloned/repo/hue_remote.py"