diff options
author | stanrc85 <47038504+stanrc85@users.noreply.github.com> | 2021-05-27 00:03:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 21:03:10 -0700 |
commit | 5962f05f568a241e4247922b3d8595ccb9d9a4b6 (patch) | |
tree | adb70d196c00e277a8dcadd2f6c5685d9110ce55 /keyboards/jacky_studio/bear_65/bear_65.c | |
parent | 3a6188fc55b6ad8ca3de3861b44f34474d188d9d (diff) |
[Keyboard] Add RGB Matrix support for Bear65 PCB (#12961)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/jacky_studio/bear_65/bear_65.c')
-rw-r--r-- | keyboards/jacky_studio/bear_65/bear_65.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/keyboards/jacky_studio/bear_65/bear_65.c b/keyboards/jacky_studio/bear_65/bear_65.c index a2ae572b82..b4ed1318f0 100644 --- a/keyboards/jacky_studio/bear_65/bear_65.c +++ b/keyboards/jacky_studio/bear_65/bear_65.c @@ -15,3 +15,23 @@ */ #include "bear_65.h" + +#ifdef RGB_MATRIX_ENABLE +led_config_t g_led_config = { { + // Key Matrix to LED Index + { NO_LED, 4 , 4 , 4 , 4 , 3 , 3 , 3 , 3 , 2 , 2 , 2 , 2 , 1 , NO_LED}, + { NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, 6 }, + { 6 , NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, 6 , 0 , 6 }, + { 7 , 5 , NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, 11 }, + { 7 , NO_LED, NO_LED, 8 , NO_LED, 8 , 9 , NO_LED, 9 , 7 , 10 , 11 , 11 , 11 , 1 }, +}, { + // LED Index to Physical Position + {224, 32}, {224, 10}, {192, 10}, {128, 25}, + {70, 10}, {16, 10}, {16, 32}, {16, 64}, + {64, 64}, {112, 64}, {176, 64}, {224, 64} +}, { + // LED Index to Flag + LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, + LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL +} }; +#endif |