summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarey <kcarey1@APC02S226SG8WM.local>2020-10-20 21:47:49 -0500
committerCarey <kcarey1@APC02S226SG8WM.local>2020-10-20 21:47:49 -0500
commit6aae66782682ffcabf953d785308b83ee16fc3b6 (patch)
tree5826ced3706c920a1d9649d33445cf5edf3dd4de
parent26057c0200add18ed1a08d3795116e36a34b14b4 (diff)
merge changes from master
-rw-r--r--app/Kconfig37
1 files changed, 37 insertions, 0 deletions
diff --git a/app/Kconfig b/app/Kconfig
index f06a92c..e8bfa3c 100644
--- a/app/Kconfig
+++ b/app/Kconfig
@@ -13,6 +13,15 @@ config USB_DEVICE_PRODUCT
config BT_DEVICE_NAME
default ZMK_KEYBOARD_NAME
+config USB_DEVICE_VID
+ default 0x1D50
+
+config USB_DEVICE_PID
+ default 0x615E
+
+config USB_DEVICE_MANUFACTURER
+ default "ZMK Project"
+
menu "HID Output Types"
config ZMK_USB
@@ -187,6 +196,10 @@ config 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
@@ -199,6 +212,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
+
#ZMK_RGB_UNDERGLOW
endif