Skip to content

Commit

Permalink
[Keyboard] 0xc_pad LED index correction (qmk#17120)
Browse files Browse the repository at this point in the history
  • Loading branch information
filterpaper authored and zykrah committed Jul 2, 2022
1 parent bc19573 commit c9dc4e0
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions keyboards/s_ol/0xc_pad/0xc_pad.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,19 @@
#include "0xc_pad.h"

#ifdef RGB_MATRIX_ENABLE
# define Q(...) __VA_ARGS__

led_config_t g_led_config = {
led_config_t g_led_config = { {
// indices
LAYOUT(0, 6, 1, 5, 7, 2, 4, 8, 11, 3, 9, 10),
{ 0, 6, KC_NO, KC_NO },
{ 1, 5, 7, KC_NO },
{ 2, 4, 8, 11 },
{ KC_NO, 3, 9, 10 }
}, {
// phys position
LED_LAYOUT(Q({96, 110}), Q({128, 110}), Q({80, 83}), Q({112, 83}), Q({144, 83}), Q({64, 55}), Q({96, 55}), Q({128, 55}), Q({160, 55}), Q({80, 28}), Q({112, 28}), Q({144, 28})),
{ 96, 110}, { 80, 83}, { 64, 55}, { 80, 28},
{ 96, 55}, {112, 83}, {128, 110}, {144, 83},
{128, 55}, {112, 28}, {144, 28}, {160, 55}
}, {
// flags
LED_LAYOUT(4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4),
};
# undef Q
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
} };
#endif

0 comments on commit c9dc4e0

Please sign in to comment.