aboutsummaryrefslogtreecommitdiff
path: root/docs/Usage/Configuration.md
diff options
context:
space:
mode:
authorJakob Stendahl <jakob.stendahl@outlook.com>2018-12-01 00:26:50 +0100
committerJakob Stendahl <jakob.stendahl@outlook.com>2018-12-01 00:26:50 +0100
commit227b9e7d22cddb45deee1558e51d9b792b31f12b (patch)
tree1791216bb7163aa1128a1df4f41449739e4a48a6 /docs/Usage/Configuration.md
parentbf3ff628acf6e597d76f57c9a908f7136027187c (diff)
downloadLuxcena-Neo-227b9e7d22cddb45deee1558e51d9b792b31f12b.tar.gz
Luxcena-Neo-227b9e7d22cddb45deee1558e51d9b792b31f12b.zip
:memo: Written docs for supportlib
Diffstat (limited to 'docs/Usage/Configuration.md')
-rw-r--r--docs/Usage/Configuration.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/Usage/Configuration.md b/docs/Usage/Configuration.md
index 5a839e5..f13d639 100644
--- a/docs/Usage/Configuration.md
+++ b/docs/Usage/Configuration.md
@@ -43,11 +43,12 @@ This is a two dimensonal array, used to arrange the segments in a matrix of your
```json
"segments": [10, 10, 10, 10, 10, 10, 10, 10, 10],
"matrix": [
- [0, 1, 2],
- [3, 4, 5],
- [6, 7, 8]
+ [[0, false], [1, true], [2, false]],
+ [[3, true], [4, false], [5, true]],
+ [[6, false], [7, true], [8, false]]
]
```
+Each entry looks is a list, with two parameters, `[<segment_number>, <invert>]`
{% hint style='danger' %}
If you don't have a reference to all the segments or something, the matrix setup will fail. And fall back to 'segmentsconfiguration'
{% endhint %}