~ruther/qmk_firmware

ref: f150258e5ab6bf04c2e724389465f7a8ef5759ef qmk_firmware/keyboards/checkerboards/quark_lp/quark_lp.c -rw-r--r-- 1.9 KiB
f150258e — skyloong [Keyboard] Skyloong GK61 Pro 48 (#21654) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* Copyright 2021 Nathan Spears
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "quantum.h"

#ifdef RGB_MATRIX_ENABLE
led_config_t g_led_config = { {
  // Key Matrix to LED Index
  { 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50 },
  { 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27 },
  { 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26 },
  { 14, 13, 12, 11, 10,  9,  7,  5,  3,  2,  1,  0 }
}, {
  // LED Index to Physical Position
  { 244,  0 }, { 224,  0 }, { 203,  0 }, { 183,  0 }, { 173,  0 }, { 163,  0 }, { 153,  0 }, { 143,  0 }, { 133,  0 }, { 122,  0 }, { 102,  0 }, {  81,  0 }, {  61,  0 }, {  41,  0 }, {  20, 0 },
  { 20,  21 }, {  41, 21 }, {  61, 21 }, {  81, 21 }, { 102, 21 }, { 122, 21 }, { 143, 21 }, { 163, 21 }, { 183, 21 }, { 203, 21 }, { 224, 21 }, { 244, 21 },
  { 244, 43 }, { 224, 43 }, { 203, 43 }, { 183, 43 }, { 163, 43 }, { 143, 43 }, { 122, 43 }, { 102, 43 }, {  81, 43 }, {  61, 43 }, {  41, 43 }, {  20, 43 },
  { 20,  64 }, {  41, 64 }, {  61, 64 }, {  81, 64 }, { 102, 64 }, { 112, 64 }, { 122, 64 }, { 132, 64 }, { 143, 64 }, { 153, 64 }, { 163, 64 }, { 183, 64 }
}, {
  // LED Index to Flag
   1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
   1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
   1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
   1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1
} };
#endif