diff options
author | QMK Bot <hello@qmk.fm> | 2021-11-19 17:51:36 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-11-19 17:51:36 +0000 |
commit | 070ef07a34ac74b8a077fd7b0689c4cbb345eb85 (patch) | |
tree | 72f79a457cf5afd69ef43295de83cf76586b25a2 /keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c | |
parent | 8011cbcc5030b27c8a1a3193bd9fcca08511bae8 (diff) | |
parent | 5c3afe3e6bc40ecda2770a61d8110bfa9b0dd39b (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c')
-rw-r--r-- | keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c b/keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c index d46f3aade6..298b7a1fa2 100644 --- a/keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c +++ b/keyboards/ramonimbao/tkl_ff/keymaps/via/keymap.c @@ -49,3 +49,42 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ ) }; + +#ifdef RGBLIGHT_ENABLE +const rgblight_segment_t PROGMEM ll_none[] = RGBLIGHT_LAYER_SEGMENTS( + {0, 1, HSV_OFF}, + {1, 1, HSV_OFF} +); + +const rgblight_segment_t PROGMEM ll_cl[] = RGBLIGHT_LAYER_SEGMENTS( + {1, 1, HSV_OFF} +); + +const rgblight_segment_t PROGMEM ll_sl[] = RGBLIGHT_LAYER_SEGMENTS( + {0, 1, HSV_OFF} +); + +const rgblight_segment_t* const PROGMEM rgb_layers[] = RGBLIGHT_LAYERS_LIST(ll_none, ll_cl, ll_sl); + +void keyboard_post_init_kb(void) { + rgblight_layers = rgb_layers; + + keyboard_post_init_user(); +} + +bool led_update_kb(led_t led_state) { + bool res = led_update_user(led_state); + + if (res) { + uint8_t lock_bits = led_state.scroll_lock << 1 | led_state.caps_lock; + for (uint8_t i=0; i<3; i++) { + rgblight_set_layer_state(i, false); + } + if (lock_bits < 3) { + rgblight_set_layer_state(lock_bits, true); + } + } + + return res; +} +#endif |