summaryrefslogtreecommitdiff
path: root/app/Kconfig
diff options
context:
space:
mode:
authorSimon Malinge <simon.malinge@gmail.com>2021-10-07 03:54:49 +0000
committerNick Winans <nick@winans.codes>2021-10-10 17:43:57 -0700
commitc5b8dd85fdf28d1912ef0d2cefce8b55652c0db7 (patch)
tree2f191c57023c9299fb9a42839a7f5cf1ee15e8ed /app/Kconfig
parent96fea949d5dc6aa59bb4a8bbdcf128994b1dcdf9 (diff)
feat(underglow): Add support for configurable min/max brightness
Co-authored-by: jrhrsmit <jasper.770@gmail.com>
Diffstat (limited to 'app/Kconfig')
-rw-r--r--app/Kconfig12
1 files changed, 11 insertions, 1 deletions
diff --git a/app/Kconfig b/app/Kconfig
index 35bf77d..fa16824 100644
--- a/app/Kconfig
+++ b/app/Kconfig
@@ -209,7 +209,7 @@ endif
endif
#ZMK_SPLIT
-endif
+endif
if ZMK_BLE
@@ -262,6 +262,16 @@ config ZMK_RGB_UNDERGLOW_EXT_POWER
bool "RGB underglow toggling also controls external power"
default y
+config ZMK_RGB_UNDERGLOW_BRT_MIN
+ int "RGB underglow minimum brightness in percent"
+ range 0 100
+ default 0
+
+config ZMK_RGB_UNDERGLOW_BRT_MAX
+ int "RGB underglow maximum brightness in percent"
+ range 0 100
+ default 100
+
config ZMK_RGB_UNDERGLOW_HUE_STEP
int "RGB underglow hue step in degrees of 360"
default 10