diff options
author | Nick <nick.win999@gmail.com> | 2020-07-24 01:06:56 -0500 |
---|---|---|
committer | Nick <nick.win999@gmail.com> | 2020-07-24 01:06:56 -0500 |
commit | bb09707bd2627b29c150d85244f6f6295b6f0175 (patch) | |
tree | abf263fe262f4d527fe038f1d6c9378c1a70fefc /app/Kconfig | |
parent | f22407223f21b4a16a16b8254961e45eb177dbdb (diff) |
Add base files and configuration for RGB underglow
Diffstat (limited to 'app/Kconfig')
-rw-r--r-- | app/Kconfig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/Kconfig b/app/Kconfig index 997409e..df768b3 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -138,6 +138,30 @@ config ZMK_ACTION_MOD_TAP endmenu +menu "ZMK Lighting" + +menuconfig ZMK_RGB_UNDERGLOW + bool "RGB Adressable LED Underglow" + select LED_STRIP + +if ZMK_RGB_UNDERGLOW + +config ZMK_RGB_UNDERGLOW_HUE_STEP + int "RGB underglow hue step in degrees of 360" + default 10 + +config ZMK_RGB_UNDERGLOW_SAT_STEP + int "RGB underglow sturation step in percent" + default 10 + +config ZMK_RGB_UNDERGLOW_BRT_STEP + int "RGB underglow brightness step in percent" + default 10 + +endif + +endmenu + config HEAP_MEM_POOL_SIZE default 1024 |