From 330fd35557e2b0637a75e97351aa679c273e1be3 Mon Sep 17 00:00:00 2001 From: kemonine Date: Tue, 24 Nov 2020 10:08:59 -0500 Subject: [PATCH] Reduce intensity of bit-c led / turn it off for kemonine keymaps --- keyboards/nullbitsco/tidbit/keymap.c | 4 ++-- qmk/keyboards/nullbitsco/tidbit/keymaps/kemonine/keymap.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/keyboards/nullbitsco/tidbit/keymap.c b/keyboards/nullbitsco/tidbit/keymap.c index 5246a5f3..fea3c627 100644 --- a/keyboards/nullbitsco/tidbit/keymap.c +++ b/keyboards/nullbitsco/tidbit/keymap.c @@ -63,7 +63,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { switch(keycode) { case PROG: if (record->event.pressed) { - set_bitc_LED(LED_ON); + set_bitc_LED(LED_DIM); rgblight_disable_noeeprom(); reset_keyboard(); } @@ -147,7 +147,7 @@ const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST( // Layer color init void keyboard_post_init_user(void) { rgblight_layers = my_rgb_layers; - set_bitc_LED(LED_DIM); + set_bitc_LED(LED_OFF); layer_clear(); layer_on(0); rgblight_sethsv_noeeprom(HSV_KMN_PURPLE); diff --git a/qmk/keyboards/nullbitsco/tidbit/keymaps/kemonine/keymap.c b/qmk/keyboards/nullbitsco/tidbit/keymaps/kemonine/keymap.c index 55e3e939..75ed00cf 100644 --- a/qmk/keyboards/nullbitsco/tidbit/keymaps/kemonine/keymap.c +++ b/qmk/keyboards/nullbitsco/tidbit/keymaps/kemonine/keymap.c @@ -63,7 +63,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { switch(keycode) { case PROG: if (record->event.pressed) { - set_bitc_LED(LED_ON); + set_bitc_LED(LED_DIM); rgblight_disable_noeeprom(); reset_keyboard(); } @@ -147,7 +147,7 @@ const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST( // Layer color init void keyboard_post_init_user(void) { rgblight_layers = my_rgb_layers; - set_bitc_LED(LED_DIM); + set_bitc_LED(LED_OFF); layer_clear(); layer_on(0); rgblight_sethsv_noeeprom(HSV_KMN_PURPLE);