diff options
Diffstat (limited to 'keyboards/planck/light/light.c')
-rw-r--r-- | keyboards/planck/light/light.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/keyboards/planck/light/light.c b/keyboards/planck/light/light.c index c2c241fab4..1fc6a65c0c 100644 --- a/keyboards/planck/light/light.c +++ b/keyboards/planck/light/light.c @@ -14,7 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "light.h" +#include "quantum.h" const is31_led PROGMEM g_is31_leds[RGB_MATRIX_LED_COUNT] = { /* Refer to IS31 manual for these locations @@ -140,3 +140,10 @@ const keypos_t PROGMEM hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { const uint8_t PROGMEM encoder_hand_swap_config[NUM_ENCODERS] = {0}; # endif #endif + +const uint8_t music_map[MATRIX_ROWS][MATRIX_COLS] = { + {36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47}, + {24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35}, + {12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23}, + { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11} +}; |