Browse Source

[Keyboard] Latinpad LED index correction (#17109)

pull/17122/head
Albert Y 1 year ago
committed by GitHub
parent
commit
8b9cb030a7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 11 deletions
  1. +9
    -11
      keyboards/latincompass/latinpad/latinpad.c

+ 9
- 11
keyboards/latincompass/latinpad/latinpad.c View File

@ -16,25 +16,23 @@
#include "latinpad.h"
#ifdef RGB_MATRIX_ENABLE
led_config_t g_led_config = {
{
{ 1, 2, 3, 4 },
{ 5, 6, 7, 8 },
{ 9, 10, 11, 12 },
{ 13, 14, 15, 16 },
{ 17, 18, NO_LED, NO_LED }
},{
led_config_t g_led_config = { {
{ 0, 1, 2, 3 },
{ 4, 5, 6, 7 },
{ 8, 9, 10, 11 },
{ 12, 13, 14, 15 },
{ 16, 17, NO_LED, NO_LED }
},{
{ 74, 21 }, { 37, 21 }, { 24, 21 }, { 18, 21 },
{ 74, 10 }, { 37, 10 }, { 28, 10 }, { 18, 10 },
{ 74, 7 }, { 37, 7 }, { 20, 7 }, { 18, 7 },
{ 74, 5 }, { 37, 5 }, { 22, 5 }, { 18, 5 },
{ 74, 5 }, { 37, 5 },
},{
},{
1, 1, 1, 1,
1, 1, 1, 1,
1, 1, 1, 1,
1, 1, 1, 1,
1, 1
}
};
} };
#endif

Loading…
Cancel
Save