From d6e1d96cac61ce2e126c30a3a1608a445f8dcfcb Mon Sep 17 00:00:00 2001 From: Paul Warren Date: Sat, 20 Jun 2020 12:39:22 +1000 Subject: [PATCH] Adjust positioning of layer LEDs --- kbd75/pwarren/keymap.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/kbd75/pwarren/keymap.c b/kbd75/pwarren/keymap.c index 834ebff..49cd1b7 100644 --- a/kbd75/pwarren/keymap.c +++ b/kbd75/pwarren/keymap.c @@ -115,18 +115,17 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { // Light LEDs 6 to 9 and 12 to 15 red when caps lock is active. Hard to ignore! const rgblight_segment_t PROGMEM my_capslock_layer[] = RGBLIGHT_LAYER_SEGMENTS( - {6, 4, HSV_RED}, // Light 4 LEDs, starting with LED 6 - {12, 4, HSV_RED} // Light 4 LEDs, starting with LED 12 + {12, 4, HSV_RED} // Light 4 LEDs, starting with LED 6 ); // Light LEDs 9 & 10 in cyan when keyboard layer 1 is active const rgblight_segment_t PROGMEM my_layer1_layer[] = RGBLIGHT_LAYER_SEGMENTS( - {9, 2, HSV_CYAN} + {10, 2, HSV_GREEN} ); // Light LEDs 11 & 12 in purple when keyboard layer 2 is active const rgblight_segment_t PROGMEM my_layer2_layer[] = RGBLIGHT_LAYER_SEGMENTS( - {11, 2, HSV_PURPLE} + {8, 2, HSV_GREEN} ); // Now define the array of layers. Later layers take precedence const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST(