diff options
author | M-AS <matthewtransformer@hotmail.com> | 2019-03-17 13:38:51 -0400 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-03-17 10:38:51 -0700 |
commit | 221ac2eabbc73c9d59583c6d78c779bbfec0d7bc (patch) | |
tree | 3f50380b649631b2d9c30bd1ce745cf82d8b973b /quantum/rgb_matrix.h | |
parent | d8df01ca5e43b6322ba2ef5c7613a871ce69282c (diff) |
New RGB Matrix effect: Single color reactive (#5330)
* Adds new RGB Matrix effect: rgb_matrix_config'd reactive LEDs
* [Docs] Adds disable for new effect
* [Docs] Added new effect to list of effects
Diffstat (limited to 'quantum/rgb_matrix.h')
-rw-r--r-- | quantum/rgb_matrix.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/rgb_matrix.h b/quantum/rgb_matrix.h index e43532d11e..e6acd2d4b5 100644 --- a/quantum/rgb_matrix.h +++ b/quantum/rgb_matrix.h @@ -110,6 +110,9 @@ enum rgb_matrix_effects { #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE RGB_MATRIX_SOLID_REACTIVE, #endif + #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE + RGB_MATRIX_SOLID_REACTIVE_SIMPLE, + #endif #ifndef DISABLE_RGB_MATRIX_SPLASH RGB_MATRIX_SPLASH, #endif |