diff options
author | QMK Bot <hello@qmk.fm> | 2022-07-02 13:09:54 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-07-02 13:09:54 +0000 |
commit | d9e311ad30da3444e1abb8b5f4848b3ac098414b (patch) | |
tree | 547ef4e224ec3e555d2a4d7141b9baabb55a820c /keyboards/annepro2/protocol.h | |
parent | c1d9f9911c775704b4205a4ced38ee8053b04e4b (diff) | |
parent | 783d1cd458b68055a6ba6d66a3f0fcd0698158c8 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/annepro2/protocol.h')
-rw-r--r-- | keyboards/annepro2/protocol.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/annepro2/protocol.h b/keyboards/annepro2/protocol.h index 41610054e0..d38fd0a66e 100644 --- a/keyboards/annepro2/protocol.h +++ b/keyboards/annepro2/protocol.h @@ -55,6 +55,14 @@ enum { /* Number of profiles, current profile, on/off state, reactive flag, brightness, errors */ CMD_LED_STATUS = 0x41, + + /* Set sticky key, meaning the key will light up even when LEDs are turned off */ + CMD_LED_STICKY_SET_KEY = 0x50, + CMD_LED_STICKY_SET_ROW = 0x51, + CMD_LED_STICKY_SET_MONO = 0x52, + CMD_LED_STICKY_UNSET_KEY = 0x53, + CMD_LED_STICKY_UNSET_ROW = 0x54, + CMD_LED_STICKY_UNSET_ALL = 0x55, }; /* 1 ROW * 14 COLS * 4B (RGBX) = 56 + header prefix. */ |