summaryrefslogtreecommitdiff
path: root/keyboards/wilba_tech/wt_rgb_backlight_keycodes.h
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2023-02-23 09:19:00 +1100
committerGitHub <noreply@github.com>2023-02-23 09:19:00 +1100
commit7f805cc7799deb0ca75f751cebd32c6640058af9 (patch)
treeebc20e21b50812ea4455bdfc5567c8025aa4fc74 /keyboards/wilba_tech/wt_rgb_backlight_keycodes.h
parent403b0addea48548abdbde6203d8673f2b77164a7 (diff)
VIA Protocol 12 + fixes (#19916)
Co-authored-by: Wilba <wilba@wilba.tech> Co-authored-by: zvecr <git@zvecr.com>
Diffstat (limited to 'keyboards/wilba_tech/wt_rgb_backlight_keycodes.h')
-rw-r--r--keyboards/wilba_tech/wt_rgb_backlight_keycodes.h29
1 files changed, 14 insertions, 15 deletions
diff --git a/keyboards/wilba_tech/wt_rgb_backlight_keycodes.h b/keyboards/wilba_tech/wt_rgb_backlight_keycodes.h
index 5a43649535..b8c23c4b07 100644
--- a/keyboards/wilba_tech/wt_rgb_backlight_keycodes.h
+++ b/keyboards/wilba_tech/wt_rgb_backlight_keycodes.h
@@ -15,20 +15,19 @@
*/
#pragma once
-// This is hardcoded at 0x5F00 so it's well after keycode value SAFE_RANGE
enum wt_rgb_backlight_keycodes {
- BR_INC = 0x5F00, // backlight brightness increase
- BR_DEC, // backlight brightness decrease
- EF_INC, // backlight effect increase
- EF_DEC, // backlight effect decrease
- ES_INC,
- ES_DEC,
- H1_INC,
- H1_DEC,
- S1_INC,
- S1_DEC,
- H2_INC,
- H2_DEC,
- S2_INC,
- S2_DEC
+ BR_INC = QK_KB_0, // brightness increase
+ BR_DEC, // brightness decrease
+ EF_INC, // effect increase
+ EF_DEC, // effect decrease
+ ES_INC, // effect speed increase
+ ES_DEC, // effect speed decrease
+ H1_INC, // color 1 hue increase
+ H1_DEC, // color 1 hue decrease
+ S1_INC, // color 1 saturation increase
+ S1_DEC, // color 1 saturation decrease
+ H2_INC, // color 2 hue increase
+ H2_DEC, // color 2 hue decrease
+ S2_INC, // color 2 saturation increase
+ S2_DEC // color 2 saturation decrease
};