diff options
author | Albert Y <76888457+filterpaper@users.noreply.github.com> | 2022-05-17 13:02:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 22:02:35 -0700 |
commit | 8b9cb030a74ced2c50fe62e2fd259e16a93e33bf (patch) | |
tree | a7207dc840a449c0d50b4f04d189d7be06c58dad /keyboards/latincompass/latinpad/latinpad.c | |
parent | aa970e85609e46f69ae14f09ec072fea8d165021 (diff) |
[Keyboard] Latinpad LED index correction (#17109)
Diffstat (limited to 'keyboards/latincompass/latinpad/latinpad.c')
-rw-r--r-- | keyboards/latincompass/latinpad/latinpad.c | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/keyboards/latincompass/latinpad/latinpad.c b/keyboards/latincompass/latinpad/latinpad.c index 85f8eba7d5..51826bd6a0 100644 --- a/keyboards/latincompass/latinpad/latinpad.c +++ b/keyboards/latincompass/latinpad/latinpad.c @@ -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 |