Adjust indicator LED positions

This commit is contained in:
Paul Warren 2020-06-21 12:43:21 +10:00
parent d6e1d96cac
commit bc32e6ccba
1 changed files with 5 additions and 5 deletions

View File

@ -113,17 +113,17 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
// Lighting effects // 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( 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( 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( const rgblight_segment_t PROGMEM my_layer2_layer[] = RGBLIGHT_LAYER_SEGMENTS(
{8, 2, HSV_GREEN} {8, 2, HSV_GREEN}
); );