diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-10-18 22:29:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 22:29:55 -0400 |
commit | ef37f17796a32ccc4b09b5a797c87147259b6088 (patch) | |
tree | aafdc0f6124b17fd5179b7eb4cd5ad094607788a /app/Kconfig | |
parent | 09d3d343755df3fe3019e6774183cede4acc6ff1 (diff) | |
parent | 608ae0df6dfe4d75bc98c36f6756dc4d69399109 (diff) |
Merge pull request #109 from Nicell/underglow/state-persistence
Add RGB underglow state Kconfig and settings
Diffstat (limited to 'app/Kconfig')
-rw-r--r-- | app/Kconfig | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/Kconfig b/app/Kconfig index 4cd01eb..285ed91 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -217,6 +217,10 @@ menuconfig ZMK_RGB_UNDERGLOW if ZMK_RGB_UNDERGLOW +# This default value cuts down on tons of excess .conf files, if you're using GPIO, manually disable this +config SPI + default y + config ZMK_RGB_UNDERGLOW_HUE_STEP int "RGB underglow hue step in degrees of 360" default 10 @@ -229,6 +233,30 @@ config ZMK_RGB_UNDERGLOW_BRT_STEP int "RGB underglow brightness step in percent" default 10 +config ZMK_RGB_UNDERGLOW_HUE_START + int "RGB underglow start hue value from 0-359" + default 0 + +config ZMK_RGB_UNDERGLOW_SAT_START + int "RGB underglow start saturations value from 0-100" + default 100 + +config ZMK_RGB_UNDERGLOW_BRT_START + int "RGB underglow start brightness value from 0-100" + default 100 + +config ZMK_RGB_UNDERGLOW_SPD_START + int "RGB underglow start animation speed value from 1-5" + default 3 + +config ZMK_RGB_UNDERGLOW_EFF_START + int "RGB underglow start effect int value related to the effect enum list" + default 0 + +config ZMK_RGB_UNDERGLOW_ON_START + bool "Whether RGB underglow starts on by default" + default y + endif endmenu |