diff options
| author | Drashna Jaelre <drashna@live.com> | 2020-06-22 01:38:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-22 09:38:58 +0100 |
| commit | 98642ca02878741531105bd879c0d61110198b62 (patch) | |
| tree | befd24e847255379c60f9c77df53072245fa6b7b /docs/feature_rgb_matrix.md | |
| parent | 82dc8faaf30a6b77ec715852c3841fde087b6b07 (diff) | |
| download | qmk_firmware-98642ca02878741531105bd879c0d61110198b62.tar.gz qmk_firmware-98642ca02878741531105bd879c0d61110198b62.zip | |
Improve keycode handling for RGB (#7677)
Co-authored-by: drashna <drashna@live.com>
Co-authored-by: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'docs/feature_rgb_matrix.md')
| -rw-r--r-- | docs/feature_rgb_matrix.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md index a4f434cbd..9604bdcc8 100644 --- a/docs/feature_rgb_matrix.md +++ b/docs/feature_rgb_matrix.md | |||
| @@ -186,8 +186,16 @@ All RGB keycodes are currently shared with the RGBLIGHT system: | |||
| 186 | |`RGB_VAD` | |Decrease value (brightness), increase value when Shift is held | | 186 | |`RGB_VAD` | |Decrease value (brightness), increase value when Shift is held | |
| 187 | |`RGB_SPI` | |Increase effect speed (does not support eeprom yet), decrease speed when Shift is held| | 187 | |`RGB_SPI` | |Increase effect speed (does not support eeprom yet), decrease speed when Shift is held| |
| 188 | |`RGB_SPD` | |Decrease effect speed (does not support eeprom yet), increase speed when Shift is held| | 188 | |`RGB_SPD` | |Decrease effect speed (does not support eeprom yet), increase speed when Shift is held| |
| 189 | |`RGB_MODE_PLAIN` |`RGB_M_P `|Static (no animation) mode | | ||
| 190 | |`RGB_MODE_BREATHE` |`RGB_M_B` |Breathing animation mode | | ||
| 191 | |`RGB_MODE_RAINBOW` |`RGB_M_R` |Full gradient scrolling left to right (uses the `RGB_MATRIX_CYCLE_LEFT_RIGHT` mode) | | ||
| 192 | |`RGB_MODE_SWIRL` |`RGB_M_SW`|Full gradient spinning pinwheel around center of keyboard (uses `RGB_MATRIX_CYCLE_PINWHEEL` mode) | | ||
| 189 | 193 | ||
| 190 | * `RGB_MODE_*` keycodes will generally work, but are not currently mapped to the correct effects for the RGB Matrix system | 194 | * `RGB_MODE_*` keycodes will generally work, but not all of the modes are currently mapped to the correct effects for the RGB Matrix system. |
| 195 | |||
| 196 | `RGB_MODE_PLAIN`, `RGB_MODE_BREATHE`, `RGB_MODE_RAINBOW`, and `RGB_MATRIX_SWIRL` are the only ones that are mapped properly. The rest don't have a direct equivalent, and are not mapped. | ||
| 197 | |||
| 198 | !> By default, if you have both the [RGB Light](feature_rgblight.md) and the RGB Matrix feature enabled, these keycodes will work for both features, at the same time. You can disable the keycode functionality by defining the `*_DISABLE_KEYCODES` option for the specific feature. | ||
| 191 | 199 | ||
| 192 | ## RGB Matrix Effects :id=rgb-matrix-effects | 200 | ## RGB Matrix Effects :id=rgb-matrix-effects |
| 193 | 201 | ||
| @@ -385,6 +393,7 @@ These are defined in [`rgblight_list.h`](https://github.com/qmk/qmk_firmware/blo | |||
| 385 | #define RGB_MATRIX_STARTUP_SAT 255 // Sets the default saturation value, if none has been set | 393 | #define RGB_MATRIX_STARTUP_SAT 255 // Sets the default saturation value, if none has been set |
| 386 | #define RGB_MATRIX_STARTUP_VAL RGB_MATRIX_MAXIMUM_BRIGHTNESS // Sets the default brightness value, if none has been set | 394 | #define RGB_MATRIX_STARTUP_VAL RGB_MATRIX_MAXIMUM_BRIGHTNESS // Sets the default brightness value, if none has been set |
| 387 | #define RGB_MATRIX_STARTUP_SPD 127 // Sets the default animation speed, if none has been set | 395 | #define RGB_MATRIX_STARTUP_SPD 127 // Sets the default animation speed, if none has been set |
| 396 | #define RGB_MATRIX_DISABLE_KEYCODES // disables control of rgb matrix by keycodes (must use code functions to control the feature) | ||
| 388 | ``` | 397 | ``` |
| 389 | 398 | ||
| 390 | ## EEPROM storage :id=eeprom-storage | 399 | ## EEPROM storage :id=eeprom-storage |
