aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bastardkb/scylla/scylla.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/bastardkb/scylla/scylla.c')
-rw-r--r--keyboards/bastardkb/scylla/scylla.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/keyboards/bastardkb/scylla/scylla.c b/keyboards/bastardkb/scylla/scylla.c
new file mode 100644
index 000000000..b110d7ff5
--- /dev/null
+++ b/keyboards/bastardkb/scylla/scylla.c
@@ -0,0 +1,61 @@
1/*
2 * Copyright 2021 Quentin LEBASTARD <[email protected]>
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include "scylla.h"
19
20#ifdef RGB_MATRIX_ENABLE
21led_config_t g_led_config = { {
22 // left
23 { 0, 7, 8, 15, 16, 20 },
24 { 1, 6, 9, 14, 17, 21 },
25 { 2, 5, 10, 13, 18, 22 },
26 { 3, 4, 11, 12, 19, 23 },
27 { NO_LED, 28, 24, 26, 27, 25 },
28 // right
29 { 29, 36, 37, 44, 45, 49 },
30 { 30, 35, 38, 43, 46, 50 },
31 { 31, 34, 39, 42, 47, 51 },
32 { 32, 33, 40, 41, 48, 52 },
33 { NO_LED, 57, 53, 55, 56, 54 }
34}, {
35 // left
36 { 0, 0 }, { 0, 16 }, { 0, 32 }, { 0, 48 }, // col 1
37 { 20, 48 }, { 20, 32 }, { 20, 16 }, { 20, 0 }, // col 2
38 { 41, 0 }, { 41, 16 }, { 41, 32 }, { 41, 48 },
39 { 61, 48 }, { 61, 32 }, { 61, 16 }, { 61, 0 },
40 { 81, 0 }, { 81, 16 }, { 81, 32 }, { 81, 48 },
41 { 102, 0 }, { 102, 16 }, { 102, 32 }, { 102, 48 },
42 { 102, 64 }, { 81, 64 }, { 61, 56 }, { 81, 56 }, { 102, 56 }, // left thumb cluster
43 // right
44 { 224, 0 }, { 224, 16 }, { 224, 32 }, { 224, 48 }, // col 12
45 { 204, 48 }, { 204, 32 }, { 204, 16 }, { 204, 0 }, // col 11
46 { 183, 0 }, { 183, 16 }, { 183, 32 }, { 183, 48 },
47 { 163, 48 }, { 163, 32 }, { 163, 16 }, { 163, 0 },
48 { 142, 0 }, { 142, 16 }, { 142, 32 }, { 142, 48 },
49 { 122, 0 }, { 122, 16 }, { 122, 32 }, { 122, 48 },
50 { 122, 64 }, { 142, 64 }, { 163, 56 }, { 142, 56 }, { 122, 56 } // right thumb cluster
51}, {
52 // left
53 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4,
54 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
55 2, 2, 2, 2, 2,
56 // right
57 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4,
58 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
59 2, 2, 2, 2, 2
60} };
61#endif