rog-aura: add per-zone effects

This commit is contained in:
Luke D. Jones
2022-08-26 18:29:17 +12:00
parent 4f39c01139
commit 97481cd45e
12 changed files with 281 additions and 57 deletions

View File

@@ -141,7 +141,9 @@ An Aura config itself is a file with contents:
{
[
{
"key": "F",
"led_type": {
"Key": "W"
},
"action": {
"Breathe": {
"colour1": [
@@ -159,18 +161,34 @@ An Aura config itself is a file with contents:
}
},
{
"key": "Esc",
"action": {
"Static": [
0,
0,
255
]
"led_type": {
"Key": "Esc"
},
"action": {
"Static": [
0,
0,
255
]
}
}
]
}
```
If your laptop supports multizone, `"led_type"` can also be `"PerZone": <one of the following>`
- `"None"`
- `"KeyboardLeft"`
- `"KeyboardCenterLeft"`
- `"KeyboardCenterRight"`
- `"KeyboardRight"`
- `"LightbarRight"`
- `"LightbarRightCorner"`
- `"LightbarRightBottom"`
- `"LightbarLeftBottom"`
- `"LightbarLeftCorner"`
- `"LightbarLeft"`
At the moment there are only two effects available as shown in the example. More will come in the future
but this may take me some time.