diff options
author | Ryan <fauxpark@gmail.com> | 2023-09-24 12:32:20 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-24 03:32:20 +0100 |
commit | 6424dadd3785d83ebbe17861ed9f9b495b8ba6ae (patch) | |
tree | ccdf39072e5ab1203af46f3128db435a1ab1229a /keyboards/lfkeyboards/lfkpad/keymaps/pascalpfeil | |
parent | 9c340077f630ef464758687e67e415e85376dad1 (diff) |
Remove custom ISSI lighting code (#22073)
* Remove CU75 custom lighting
* Remove LFK78 custom lighting
* Remove LFK87 custom lighting
* Remove LFKPad custom lighting
* Remove Mini1800 custom lighting
* Remove SMK65 custom lighting
* Remove LFK65-HS custom lighting
* Remove LFKeyboards custom lighting
* Remove Meira custom lighting
Diffstat (limited to 'keyboards/lfkeyboards/lfkpad/keymaps/pascalpfeil')
-rw-r--r-- | keyboards/lfkeyboards/lfkpad/keymaps/pascalpfeil/keymap.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/keyboards/lfkeyboards/lfkpad/keymaps/pascalpfeil/keymap.c b/keyboards/lfkeyboards/lfkpad/keymaps/pascalpfeil/keymap.c index 94f66e78b2..466adfea47 100644 --- a/keyboards/lfkeyboards/lfkpad/keymaps/pascalpfeil/keymap.c +++ b/keyboards/lfkeyboards/lfkpad/keymaps/pascalpfeil/keymap.c @@ -56,18 +56,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { _______, _______, _______ ), }; - -const uint8_t number_leds[] = {8, 9, 10, 11, 12, 13, 15, 16, 17}; -const uint8_t number_leds_size = ARRAY_SIZE(number_leds); - -bool led_update_user(led_t led_state) { - for (uint8_t i = 0; i < number_leds_size; i++) - if (led_state.num_lock) - // set to whatever the other leds are doing - // this is needed so that upon disabling num lock, the leds don't stay red - rgblight_sethsv_at(rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val(), numer_leds[i]); - else - rgblight_setrgb_at(RGB_RED, numer_leds[i]); // set to red - - return true; -} |