summaryrefslogtreecommitdiffstats
path: root/quantum/quantum.c
diff options
context:
space:
mode:
authorSebastian Kaim <sebb@sebb767.de>2017-10-24 23:17:47 +0200
committerJack Humbert <jack.humb@gmail.com>2017-10-25 05:02:20 +0200
commit1f4349592277e6a61e643947665c8b026b7700ed (patch)
treed4374e8deb6d268357bb5c22684b71c4445c75e2 /quantum/quantum.c
parent21dfa29c28b8257116b2f1c0b4524c4062658598 (diff)
downloadqmk_firmware-1f4349592277e6a61e643947665c8b026b7700ed.tar.gz
qmk_firmware-1f4349592277e6a61e643947665c8b026b7700ed.tar.xz
Added a new keycode for cycling through RBG modes which reverses directions when shift is hold.
This commit adds a new keycode `RGB_SMOD` which is the same as `RGB_MOD` (cycle through all modes), but when it is used in combination with shift it will reverse the direction.
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index a1a1a9d1c..23873852f 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -290,6 +290,18 @@ bool process_record_quantum(keyrecord_t *record) {
rgblight_step();
}
return false;
+ case RGB_SMOD:
+ // same as RBG_MOD, but if shift is pressed, it will use the reverese direction instead.
+ if (record->event.pressed) {
+ uint8_t shifted = get_mods() & (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT));
+ if(shifted) {
+ rgblight_step_reverse();
+ }
+ else {
+ rgblight_step();
+ }
+ }
+ return false;
case RGB_HUI:
if (record->event.pressed) {
rgblight_increase_hue();