diff options
author | stanrc85 <47038504+stanrc85@users.noreply.github.com> | 2019-02-25 21:16:20 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-25 18:16:20 -0800 |
commit | 7a89b39aadc347a9bbb73601b52ac65704f09da8 (patch) | |
tree | 3c1be7759dbfdf1b5f1b859a33552c9a61e73c77 /keyboards/hs60/v2/keymaps/stanrc85/keymap.c | |
parent | 5838c458d74b6a4af6c65a9d6cdf346db999e980 (diff) |
[Keymap] HS60 v2 keymap updates (#5250)
* Add backlight controls
* Add backlight controls and remove RGB underglow
* Make HS60 board specific changes to readme
* Remove BL_TOGG as it isn't use on this board
Diffstat (limited to 'keyboards/hs60/v2/keymaps/stanrc85/keymap.c')
-rw-r--r-- | keyboards/hs60/v2/keymaps/stanrc85/keymap.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/keyboards/hs60/v2/keymaps/stanrc85/keymap.c b/keyboards/hs60/v2/keymaps/stanrc85/keymap.c index d8d79a581c..add0609034 100644 --- a/keyboards/hs60/v2/keymaps/stanrc85/keymap.c +++ b/keyboards/hs60/v2/keymaps/stanrc85/keymap.c @@ -64,13 +64,21 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { _______, _______, _______, _______, _______, _______, _______, _______), [3] = LAYOUT_60_ansi( - _______, RGB_TOG, RGB_MOD, RGB_VAD, RGB_VAI, RGB_SAI, RGB_HUD, RGB_HUI, _______, _______, _______, _______, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, - _______, _______, _______, TG(1), _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, EF_INC, ES_INC, S1_INC, H1_INC, S2_INC, H2_INC, BR_INC, _______, _______, _______, _______, _______, RESET, + TG(1), EF_DEC, ES_DEC, S1_DEC, H1_DEC, S2_DEC, H2_DEC, BR_DEC, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______) }; +// Backlight specific keys: +// EF_INC, EF_DEC, // next/previous backlight effect +// H1_INC, H1_DEC, // Color 1 hue increase/decrease +// S1_INC, S1_DEC, // Color 1 saturation increase/decrease +// H2_INC, H2_DEC, // Color 2 hue increase/decrease +// S2_INC, S2_DEC, // Color 2 saturation increase/decrease +// BR_INC, BR_DEC, // backlight brightness increase/decrease + bool process_record_user(uint16_t keycode, keyrecord_t *record) { return true; } |