aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bm65iso/bm65iso.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/bm65iso/bm65iso.c')
-rw-r--r--keyboards/bm65iso/bm65iso.c59
1 files changed, 59 insertions, 0 deletions
diff --git a/keyboards/bm65iso/bm65iso.c b/keyboards/bm65iso/bm65iso.c
new file mode 100644
index 000000000..de2aba21c
--- /dev/null
+++ b/keyboards/bm65iso/bm65iso.c
@@ -0,0 +1,59 @@
1/* Copyright 2020 ipetepete, 2021 deadolus
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include "bm65iso.h"
17
18#ifdef RGB_MATRIX_ENABLE
19led_config_t g_led_config = { {
20 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 , 14},
21 { 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29},
22 { 30, NO_LED, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43},
23 { 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58},
24 { 59, 60, NO_LED, NO_LED, NO_LED, 61, NO_LED, NO_LED, 62, 63, NO_LED, 64, 65, 66, 67}
25}, {
26 // Esc, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, -, =, Backspace
27 { 0, 0 }, { 15, 0 }, { 30, 0 }, { 45, 0 }, { 60, 0 }, { 75, 0 }, { 90, 0 }, { 105, 0 }, { 120, 0 }, { 135, 0 }, { 150, 0 }, { 165, 0 }, { 180, 0 }, { 202, 0 },{ 224, 0 },
28 // Tab, Q, W, E, R, T, Y, U, I, O, P, [, ], ,
29 { 7, 16 }, { 22, 16 }, { 37, 16 }, { 52, 16 }, { 67, 16 }, { 82, 16 }, { 97, 16 }, { 112, 16 }, { 127, 16 }, { 142, 16 }, { 157, 16 }, { 172, 16 }, { 187, 16 }, { 206, 16 },{ 224, 16},
30 // Capslock, A, S, D, F, G, H, J, K, L, ;, ', Enter
31 { 11, 32 }, { 26, 32 }, { 41, 32 }, { 56, 32 }, { 71, 32 }, { 86, 32 }, { 101, 32 }, { 116, 32 }, { 131, 32 }, { 146, 32 }, { 161, 32 }, { 176, 32 }, { 198, 32 }, { 224, 32 },
32 // LShift, Z, X, C, V, B, N, M, ,, ., /, Shift, Up,
33 { 18, 48 }, { 30, 48 }, { 45, 48 }, { 60, 48 }, { 75, 48 }, { 90, 48 }, { 105, 48 }, { 120, 48 }, { 135, 48 }, { 150, 48 }, { 165, 48 }, { 195, 48 }, { 209, 48 }, { 224, 48 },
34 // Ctrl, GUI, Alt, Space, RAlt, FN, Left, Down, Right
35 { 3, 64 }, { 22, 64 }, { 33, 64 }, { 101, 64 }, { 135, 64 }, { 153, 64 }, { 194, 64 }, { 209, 64 },{ 224, 64 },
36 // UNDERGLOW
37 { 216, 32 }, { 180, 32 }, { 144, 32 }, { 108, 32 }, { 72, 32 }, { 36, 32 }
38}, {
39 // Esc, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, -, =, Backspace
40 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
41 // Tab, Q, W, E, R, T, Y, U, I, O, P, [, ], ,
42 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
43 // Capslock, A, S, D, F, G, H, J, K, L, ;, ', Enter
44 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
45 // LShift, Z, X, C, V, B, N, M, ,, ., /, Shift, Up,
46 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1,
47 // Ctrl, GUI, Alt, Space, RAlt, FN, Left, Down, Right
48 1, 1, 1, 4, 1, 1, 1, 1, 1,
49 // UNDERGLOW
50 2, 2, 2, 2, 2, 2
51} };
52
53__attribute__ ((weak))
54void rgb_matrix_indicators_user(void) {
55 if (host_keyboard_led_state().caps_lock) {
56 rgb_matrix_set_color(30, 0xFF, 0xFF, 0xFF);
57 }
58}
59#endif