From bc32e6ccba310fb9aadf3129a3c9d54772177181 Mon Sep 17 00:00:00 2001 From: Paul Warren Date: Sun, 21 Jun 2020 12:43:21 +1000 Subject: [PATCH] Adjust indicator LED positions --- kbd75/pwarren/keymap.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kbd75/pwarren/keymap.c b/kbd75/pwarren/keymap.c index 49cd1b7..af1bf1f 100644 --- a/kbd75/pwarren/keymap.c +++ b/kbd75/pwarren/keymap.c @@ -113,17 +113,17 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { // Lighting effects -// Light LEDs 6 to 9 and 12 to 15 red when caps lock is active. Hard to ignore! +// Light LEDs 14 & 15 red when caps lock is active. Hard to ignore! const rgblight_segment_t PROGMEM my_capslock_layer[] = RGBLIGHT_LAYER_SEGMENTS( - {12, 4, HSV_RED} // Light 4 LEDs, starting with LED 6 + {14, 2, HSV_RED} // Light 4 LEDs, starting with LED 6 ); -// Light LEDs 9 & 10 in cyan when keyboard layer 1 is active +// Light LEDs 12 * 13 in green when keyboard layer 1 is active const rgblight_segment_t PROGMEM my_layer1_layer[] = RGBLIGHT_LAYER_SEGMENTS( - {10, 2, HSV_GREEN} + {12, 2, HSV_GREEN} ); -// Light LEDs 11 & 12 in purple when keyboard layer 2 is active +// Light LEDs 7 & 8 in green when keyboard layer 2 is active const rgblight_segment_t PROGMEM my_layer2_layer[] = RGBLIGHT_LAYER_SEGMENTS( {8, 2, HSV_GREEN} );