forked from mirror/qmk_firmware
19 lines
549 B
C
19 lines
549 B
C
#include "quantum.h"
|
|
|
|
const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = {
|
|
/* Refer to IS31 manual for these locations
|
|
* driver
|
|
* | R location
|
|
* | | G location
|
|
* | | | B location
|
|
* | | | | */
|
|
{0, C1_1, C3_2, C4_2}, //A1
|
|
{0, C1_2, C2_2, C4_3}, //A2
|
|
{0, C1_3, C2_3, C3_3}, //A3
|
|
{0, C1_4, C2_4, C3_4}, //A4
|
|
{0, C1_5, C2_5, C3_5}, //A5
|
|
{0, C1_6, C2_6, C3_6}, //A6
|
|
{0, C1_7, C2_7, C3_7}, //A7
|
|
{0, C1_8, C2_8, C3_8}, //A8
|
|
};
|