From 086e42a0bf2d019b430593aea8c4441d3a2bf294 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" <38406360+E-Almqvist@users.noreply.github.com> Date: Tue, 6 Oct 2020 22:32:19 +0200 Subject: [PATCH] Small fix --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 76bb095..2f07604 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ Run the `setup.sh` script in order to copy the necessary files to `~/.config/roo #### HUE Lights presets You can create presets in the `~/.config/roomcomputer/presets.json` file. Follow this syntax *(and JSON syntax of course)*: -```python -PRESETS = { +```json +{ "mypreset": { - "color": (178, 199, 255), # RGB, from 0-255 + "color": [178, 199, 255], # RGB, from 0-255 "brightness": 100 # from 0-255 }, }