Skip to content

Commit 641698d

Browse files
lesshonorwaffle87drashna
authored
[Keyboard] ymdk/id75 (qmk#19967)
Co-authored-by: jack <[email protected]> Co-authored-by: Drashna Jaelre <[email protected]>
1 parent 75edefe commit 641698d

File tree

10 files changed

+485
-0
lines changed

10 files changed

+485
-0
lines changed

keyboards/ymdk/id75/board.h

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* Copyright 2022 JasonRen(biu)
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+
17+
#pragma once
18+
19+
#include_next <board.h>
20+
21+
#undef STM32_HSECLK
22+
#define STM32_HSECLK 16000000

keyboards/ymdk/id75/config.h

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/* Copyright 2021 MT
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+
17+
#pragma once
18+
19+
#define RGB_DI_PIN B9
20+
#define RGB_MATRIX_LED_COUNT 89
21+
22+
#define RGB_DISABLE_WHEN_USB_SUSPENDED
23+
24+
#define RGB_MATRIX_KEYPRESSES
25+
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
26+
27+
#define WS2812_PWM_DRIVER PWMD4
28+
#define WS2812_PWM_CHANNEL 4
29+
#define WS2812_PWM_PAL_MODE 2
30+
#define WS2812_DMA_STREAM STM32_DMA1_STREAM7
31+
#define WS2812_DMA_CHANNEL 7

keyboards/ymdk/id75/halconf.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/* Copyright 2020 QMK
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+
17+
#pragma once
18+
19+
#define HAL_USE_PWM TRUE
20+
21+
#include_next <halconf.h>

keyboards/ymdk/id75/id75.c

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/* Copyright 2021 MT
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+
17+
#include "quantum.h"
18+
19+
#ifdef RGB_MATRIX_ENABLE
20+
bool rgb_matrix_indicators_kb(void) {
21+
if (!rgb_matrix_indicators_user()) {
22+
return false;
23+
}
24+
25+
if (host_keyboard_led_state().caps_lock) { // Capslock = RED
26+
rgb_matrix_set_color(44, 200, 0, 0);
27+
}
28+
return true;
29+
}
30+
#endif

keyboards/ymdk/id75/info.json

Lines changed: 250 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,250 @@
1+
{
2+
"manufacturer": "YMDK",
3+
"keyboard_name": "Idobao x YMDK ID75",
4+
"maintainer": "qmk",
5+
"bootloader": "uf2boot",
6+
"board": "STM32_F103_STM32DUINO",
7+
"diode_direction": "ROW2COL",
8+
"features": {
9+
"bootmagic": true,
10+
"extrakey": true,
11+
"mousekey": true,
12+
"nkro": true,
13+
"rgb_matrix": true
14+
},
15+
"matrix_pins": {
16+
"cols": ["A10", "A9", "A8", "B15", "B14", "B13", "B12", "A5", "A6", "A4", "A3", "A2", "A1", "A0", "A15"],
17+
"rows": ["B2", "B1", "B0", "A7", "B10"]
18+
},
19+
"processor": "STM32F103",
20+
"ws2812": {
21+
"driver": "pwm"
22+
},
23+
"rgb_matrix": {
24+
"animations": {
25+
"alphas_mods": true,
26+
"gradient_up_down": true,
27+
"gradient_left_right": true,
28+
"breathing": true,
29+
"band_sat": true,
30+
"band_val": true,
31+
"band_pinwheel_sat": true,
32+
"band_pinwheel_val": true,
33+
"band_spiral_sat": true,
34+
"band_spiral_val": true,
35+
"cycle_all": true,
36+
"cycle_left_right": true,
37+
"cycle_up_down": true,
38+
"rainbow_moving_chevron": true,
39+
"cycle_out_in": true,
40+
"cycle_out_in_dual": true,
41+
"cycle_pinwheel": true,
42+
"cycle_spiral": true,
43+
"dual_beacon": true,
44+
"rainbow_beacon": true,
45+
"rainbow_pinwheels": true,
46+
"raindrops": true,
47+
"jellybean_raindrops": true,
48+
"hue_breathing": true,
49+
"hue_pendulum": true,
50+
"hue_wave": true,
51+
"pixel_rain": true,
52+
"pixel_flow": true,
53+
"pixel_fractal": true,
54+
"typing_heatmap": true,
55+
"digital_rain": true,
56+
"solid_reactive_simple": true,
57+
"solid_reactive": true,
58+
"solid_reactive_wide": true,
59+
"solid_reactive_multiwide": true,
60+
"solid_reactive_cross": true,
61+
"solid_reactive_multicross": true,
62+
"solid_reactive_nexus": true,
63+
"solid_reactive_multinexus": true,
64+
"splash": true,
65+
"multisplash": true,
66+
"solid_splash": true,
67+
"solid_multisplash": true
68+
},
69+
"driver": "WS2812",
70+
"layout": [
71+
{ "flags": 4, "matrix": [4, 14], "x": 224, "y": 64 },
72+
{ "flags": 4, "matrix": [4, 13], "x": 208, "y": 64 },
73+
{ "flags": 4, "matrix": [4, 12], "x": 192, "y": 64 },
74+
{ "flags": 4, "matrix": [4, 11], "x": 176, "y": 64 },
75+
{ "flags": 4, "matrix": [4, 10], "x": 160, "y": 64 },
76+
{ "flags": 4, "matrix": [4, 9], "x": 144, "y": 64 },
77+
{ "flags": 4, "matrix": [4, 8], "x": 128, "y": 64 },
78+
{ "flags": 4, "matrix": [4, 7], "x": 112, "y": 64 },
79+
{ "flags": 4, "matrix": [4, 6], "x": 96, "y": 64 },
80+
{ "flags": 4, "matrix": [4, 5], "x": 80, "y": 64 },
81+
{ "flags": 4, "matrix": [4, 4], "x": 64, "y": 64 },
82+
{ "flags": 4, "matrix": [4, 3], "x": 48, "y": 64 },
83+
{ "flags": 4, "matrix": [4, 2], "x": 32, "y": 64 },
84+
{ "flags": 4, "matrix": [4, 1], "x": 16, "y": 64 },
85+
{ "flags": 4, "matrix": [4, 0], "x": 0, "y": 64 },
86+
{ "flags": 4, "matrix": [3, 14], "x": 224, "y": 48 },
87+
{ "flags": 4, "matrix": [3, 13], "x": 208, "y": 48 },
88+
{ "flags": 4, "matrix": [3, 12], "x": 192, "y": 48 },
89+
{ "flags": 4, "matrix": [3, 11], "x": 176, "y": 48 },
90+
{ "flags": 4, "matrix": [3, 10], "x": 160, "y": 48 },
91+
{ "flags": 4, "matrix": [3, 9], "x": 144, "y": 48 },
92+
{ "flags": 4, "matrix": [3, 8], "x": 128, "y": 48 },
93+
{ "flags": 4, "matrix": [3, 7], "x": 112, "y": 48 },
94+
{ "flags": 4, "matrix": [3, 6], "x": 96, "y": 48 },
95+
{ "flags": 4, "matrix": [3, 5], "x": 80, "y": 48 },
96+
{ "flags": 4, "matrix": [3, 4], "x": 64, "y": 48 },
97+
{ "flags": 4, "matrix": [3, 3], "x": 48, "y": 48 },
98+
{ "flags": 4, "matrix": [3, 2], "x": 32, "y": 48 },
99+
{ "flags": 4, "matrix": [3, 1], "x": 16, "y": 48 },
100+
{ "flags": 4, "matrix": [3, 0], "x": 0, "y": 48 },
101+
{ "flags": 4, "matrix": [2, 14], "x": 224, "y": 32 },
102+
{ "flags": 4, "matrix": [2, 13], "x": 208, "y": 32 },
103+
{ "flags": 4, "matrix": [2, 12], "x": 192, "y": 32 },
104+
{ "flags": 4, "matrix": [2, 11], "x": 176, "y": 32 },
105+
{ "flags": 4, "matrix": [2, 10], "x": 160, "y": 32 },
106+
{ "flags": 4, "matrix": [2, 9], "x": 144, "y": 32 },
107+
{ "flags": 4, "matrix": [2, 8], "x": 128, "y": 32 },
108+
{ "flags": 4, "matrix": [2, 7], "x": 112, "y": 32 },
109+
{ "flags": 4, "matrix": [2, 6], "x": 96, "y": 32 },
110+
{ "flags": 4, "matrix": [2, 5], "x": 80, "y": 32 },
111+
{ "flags": 4, "matrix": [2, 4], "x": 64, "y": 32 },
112+
{ "flags": 4, "matrix": [2, 3], "x": 48, "y": 32 },
113+
{ "flags": 4, "matrix": [2, 2], "x": 32, "y": 32 },
114+
{ "flags": 4, "matrix": [2, 1], "x": 16, "y": 32 },
115+
{ "flags": 4, "matrix": [2, 0], "x": 0, "y": 32 },
116+
{ "flags": 4, "matrix": [1, 14], "x": 224, "y": 16 },
117+
{ "flags": 4, "matrix": [1, 13], "x": 208, "y": 16 },
118+
{ "flags": 4, "matrix": [1, 12], "x": 192, "y": 16 },
119+
{ "flags": 4, "matrix": [1, 11], "x": 176, "y": 16 },
120+
{ "flags": 4, "matrix": [1, 10], "x": 160, "y": 16 },
121+
{ "flags": 4, "matrix": [1, 9], "x": 144, "y": 16 },
122+
{ "flags": 4, "matrix": [1, 8], "x": 128, "y": 16 },
123+
{ "flags": 4, "matrix": [1, 7], "x": 112, "y": 16 },
124+
{ "flags": 4, "matrix": [1, 6], "x": 96, "y": 16 },
125+
{ "flags": 4, "matrix": [1, 5], "x": 80, "y": 16 },
126+
{ "flags": 4, "matrix": [1, 4], "x": 64, "y": 16 },
127+
{ "flags": 4, "matrix": [1, 3], "x": 48, "y": 16 },
128+
{ "flags": 4, "matrix": [1, 2], "x": 32, "y": 16 },
129+
{ "flags": 4, "matrix": [1, 1], "x": 16, "y": 16 },
130+
{ "flags": 4, "matrix": [1, 0], "x": 0, "y": 16 },
131+
{ "flags": 4, "matrix": [0, 14], "x": 224, "y": 0 },
132+
{ "flags": 4, "matrix": [0, 13], "x": 208, "y": 0 },
133+
{ "flags": 4, "matrix": [0, 12], "x": 192, "y": 0 },
134+
{ "flags": 4, "matrix": [0, 11], "x": 176, "y": 0 },
135+
{ "flags": 4, "matrix": [0, 10], "x": 160, "y": 0 },
136+
{ "flags": 4, "matrix": [0, 9], "x": 144, "y": 0 },
137+
{ "flags": 4, "matrix": [0, 8], "x": 128, "y": 0 },
138+
{ "flags": 4, "matrix": [0, 7], "x": 112, "y": 0 },
139+
{ "flags": 4, "matrix": [0, 6], "x": 96, "y": 0 },
140+
{ "flags": 4, "matrix": [0, 5], "x": 80, "y": 0 },
141+
{ "flags": 4, "matrix": [0, 4], "x": 64, "y": 0 },
142+
{ "flags": 4, "matrix": [0, 3], "x": 48, "y": 0 },
143+
{ "flags": 4, "matrix": [0, 2], "x": 32, "y": 0 },
144+
{ "flags": 4, "matrix": [0, 1], "x": 16, "y": 0 },
145+
{ "flags": 4, "matrix": [0, 0], "x": 0, "y": 0 },
146+
{ "flags": 2, "x": 0, "y": 64 },
147+
{ "flags": 2, "x": 38, "y": 64 },
148+
{ "flags": 2, "x": 76, "y": 64 },
149+
{ "flags": 2, "x": 114, "y": 64 },
150+
{ "flags": 2, "x": 152, "y": 64 },
151+
{ "flags": 2, "x": 190, "y": 64 },
152+
{ "flags": 2, "x": 224, "y": 64 },
153+
{ "flags": 2, "x": 0, "y": 0 },
154+
{ "flags": 2, "x": 38, "y": 0 },
155+
{ "flags": 2, "x": 76, "y": 0 },
156+
{ "flags": 2, "x": 114, "y": 0 },
157+
{ "flags": 2, "x": 152, "y": 0 },
158+
{ "flags": 2, "x": 190, "y": 0 },
159+
{ "flags": 2, "x": 224, "y": 0 }
160+
],
161+
"max_brightness": 128
162+
},
163+
"usb": {
164+
"device_version": "0.0.1",
165+
"pid": "0x0075",
166+
"vid": "0x594D"
167+
},
168+
"community_layouts": [ "ortho_5x15" ],
169+
"layouts": {
170+
"LAYOUT_ortho_5x15": {
171+
"layout": [
172+
{ "label": "k00", "matrix": [0, 0], "w": 1, "x": 0, "y": 0 },
173+
{ "label": "k01", "matrix": [0, 1], "w": 1, "x": 1, "y": 0 },
174+
{ "label": "k02", "matrix": [0, 2], "w": 1, "x": 2, "y": 0 },
175+
{ "label": "k03", "matrix": [0, 3], "w": 1, "x": 3, "y": 0 },
176+
{ "label": "k04", "matrix": [0, 4], "w": 1, "x": 4, "y": 0 },
177+
{ "label": "k05", "matrix": [0, 5], "w": 1, "x": 5, "y": 0 },
178+
{ "label": "k06", "matrix": [0, 6], "w": 1, "x": 6, "y": 0 },
179+
{ "label": "k07", "matrix": [0, 7], "w": 1, "x": 7, "y": 0 },
180+
{ "label": "k08", "matrix": [0, 8], "w": 1, "x": 8, "y": 0 },
181+
{ "label": "k09", "matrix": [0, 9], "w": 1, "x": 9, "y": 0 },
182+
{ "label": "k0A", "matrix": [0, 10], "w": 1, "x": 10, "y": 0 },
183+
{ "label": "k0B", "matrix": [0, 11], "w": 1, "x": 11, "y": 0 },
184+
{ "label": "k0C", "matrix": [0, 12], "w": 1, "x": 12, "y": 0 },
185+
{ "label": "k0D", "matrix": [0, 13], "w": 1, "x": 13, "y": 0 },
186+
{ "label": "k0E", "matrix": [0, 14], "w": 1, "x": 14, "y": 0 },
187+
{ "label": "k10", "matrix": [1, 0], "w": 1, "x": 0, "y": 1 },
188+
{ "label": "k11", "matrix": [1, 1], "w": 1, "x": 1, "y": 1 },
189+
{ "label": "k12", "matrix": [1, 2], "w": 1, "x": 2, "y": 1 },
190+
{ "label": "k13", "matrix": [1, 3], "w": 1, "x": 3, "y": 1 },
191+
{ "label": "k14", "matrix": [1, 4], "w": 1, "x": 4, "y": 1 },
192+
{ "label": "k15", "matrix": [1, 5], "w": 1, "x": 5, "y": 1 },
193+
{ "label": "k16", "matrix": [1, 6], "w": 1, "x": 6, "y": 1 },
194+
{ "label": "k17", "matrix": [1, 7], "w": 1, "x": 7, "y": 1 },
195+
{ "label": "k18", "matrix": [1, 8], "w": 1, "x": 8, "y": 1 },
196+
{ "label": "k19", "matrix": [1, 9], "w": 1, "x": 9, "y": 1 },
197+
{ "label": "k1A", "matrix": [1, 10], "w": 1, "x": 10, "y": 1 },
198+
{ "label": "k1B", "matrix": [1, 11], "w": 1, "x": 11, "y": 1 },
199+
{ "label": "k1C", "matrix": [1, 12], "w": 1, "x": 12, "y": 1 },
200+
{ "label": "k1D", "matrix": [1, 13], "w": 1, "x": 13, "y": 1 },
201+
{ "label": "k1E", "matrix": [1, 14], "w": 1, "x": 14, "y": 1 },
202+
{ "label": "k20", "matrix": [2, 0], "w": 1, "x": 0, "y": 2 },
203+
{ "label": "k21", "matrix": [2, 1], "w": 1, "x": 1, "y": 2 },
204+
{ "label": "k22", "matrix": [2, 2], "w": 1, "x": 2, "y": 2 },
205+
{ "label": "k23", "matrix": [2, 3], "w": 1, "x": 3, "y": 2 },
206+
{ "label": "k24", "matrix": [2, 4], "w": 1, "x": 4, "y": 2 },
207+
{ "label": "k25", "matrix": [2, 5], "w": 1, "x": 5, "y": 2 },
208+
{ "label": "k26", "matrix": [2, 6], "w": 1, "x": 6, "y": 2 },
209+
{ "label": "k27", "matrix": [2, 7], "w": 1, "x": 7, "y": 2 },
210+
{ "label": "k28", "matrix": [2, 8], "w": 1, "x": 8, "y": 2 },
211+
{ "label": "k29", "matrix": [2, 9], "w": 1, "x": 9, "y": 2 },
212+
{ "label": "k2A", "matrix": [2, 10], "w": 1, "x": 10, "y": 2 },
213+
{ "label": "k2B", "matrix": [2, 11], "w": 1, "x": 11, "y": 2 },
214+
{ "label": "k2C", "matrix": [2, 12], "w": 1, "x": 12, "y": 2 },
215+
{ "label": "k2D", "matrix": [2, 13], "w": 1, "x": 13, "y": 2 },
216+
{ "label": "k2E", "matrix": [2, 14], "w": 1, "x": 14, "y": 2 },
217+
{ "label": "k30", "matrix": [3, 0], "w": 1, "x": 0, "y": 3 },
218+
{ "label": "k31", "matrix": [3, 1], "w": 1, "x": 1, "y": 3 },
219+
{ "label": "k32", "matrix": [3, 2], "w": 1, "x": 2, "y": 3 },
220+
{ "label": "k33", "matrix": [3, 3], "w": 1, "x": 3, "y": 3 },
221+
{ "label": "k34", "matrix": [3, 4], "w": 1, "x": 4, "y": 3 },
222+
{ "label": "k35", "matrix": [3, 5], "w": 1, "x": 5, "y": 3 },
223+
{ "label": "k36", "matrix": [3, 6], "w": 1, "x": 6, "y": 3 },
224+
{ "label": "k37", "matrix": [3, 7], "w": 1, "x": 7, "y": 3 },
225+
{ "label": "k38", "matrix": [3, 8], "w": 1, "x": 8, "y": 3 },
226+
{ "label": "k39", "matrix": [3, 9], "w": 1, "x": 9, "y": 3 },
227+
{ "label": "k3A", "matrix": [3, 10], "w": 1, "x": 10, "y": 3 },
228+
{ "label": "k3B", "matrix": [3, 11], "w": 1, "x": 11, "y": 3 },
229+
{ "label": "k3C", "matrix": [3, 12], "w": 1, "x": 12, "y": 3 },
230+
{ "label": "k3D", "matrix": [3, 13], "w": 1, "x": 13, "y": 3 },
231+
{ "label": "k3E", "matrix": [3, 14], "w": 1, "x": 14, "y": 3 },
232+
{ "label": "k40", "matrix": [4, 0], "w": 1, "x": 0, "y": 4 },
233+
{ "label": "k41", "matrix": [4, 1], "w": 1, "x": 1, "y": 4 },
234+
{ "label": "k42", "matrix": [4, 2], "w": 1, "x": 2, "y": 4 },
235+
{ "label": "k43", "matrix": [4, 3], "w": 1, "x": 3, "y": 4 },
236+
{ "label": "k44", "matrix": [4, 4], "w": 1, "x": 4, "y": 4 },
237+
{ "label": "k45", "matrix": [4, 5], "w": 1, "x": 5, "y": 4 },
238+
{ "label": "k46", "matrix": [4, 6], "w": 1, "x": 6, "y": 4 },
239+
{ "label": "k47", "matrix": [4, 7], "w": 1, "x": 7, "y": 4 },
240+
{ "label": "k48", "matrix": [4, 8], "w": 1, "x": 8, "y": 4 },
241+
{ "label": "k49", "matrix": [4, 9], "w": 1, "x": 9, "y": 4 },
242+
{ "label": "k4A", "matrix": [4, 10], "w": 1, "x": 10, "y": 4 },
243+
{ "label": "k4B", "matrix": [4, 11], "w": 1, "x": 11, "y": 4 },
244+
{ "label": "k4C", "matrix": [4, 12], "w": 1, "x": 12, "y": 4 },
245+
{ "label": "k4D", "matrix": [4, 13], "w": 1, "x": 13, "y": 4 },
246+
{ "label": "k4E", "matrix": [4, 14], "w": 1, "x": 14, "y": 4 }
247+
]
248+
}
249+
}
250+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": 1,
3+
"author": "qmk",
4+
"notes": "",
5+
"keyboard": "ymdk/id75",
6+
"keymap": "default",
7+
"layout": "LAYOUT_ortho_5x15",
8+
"layers": [
9+
[
10+
"KC_ESC", "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", "KC_6", "KC_7", "KC_8", "KC_9", "KC_0", "KC_MINS", "KC_EQL", "KC_BSLS", "KC_GRV",
11+
"KC_TAB", "KC_Q", "KC_W", "KC_E", "KC_R", "KC_T", "KC_Y", "KC_U", "KC_I", "KC_O", "KC_P", "KC_LBRC", "KC_RBRC", "KC_BSPC", "KC_DEL",
12+
"KC_CAPS", "KC_A", "KC_S", "KC_D", "KC_F", "KC_G", "KC_H", "KC_J", "KC_K", "KC_L", "KC_SCLN", "KC_QUOT", "KC_ENT", "KC_ENT", "KC_PGUP",
13+
"KC_LSFT", "KC_Z", "KC_X", "KC_C", "KC_V", "KC_B", "KC_N", "KC_M", "KC_COMM", "KC_DOT", "KC_SLSH", "KC_RSFT", "MO(1)", "KC_UP", "KC_PGDN",
14+
"KC_LCTL", "KC_LGUI", "KC_LALT", "KC_SPC", "KC_SPC", "KC_SPC", "KC_SPC", "KC_SPC", "KC_SPC", "KC_RALT", "KC_RCTL", "KC_RCTL", "KC_LEFT", "KC_DOWN", "KC_RGHT"
15+
],
16+
[
17+
"KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS",
18+
"KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS",
19+
"RGB_MOD", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS",
20+
"KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS",
21+
"KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "QK_BOOT"
22+
]
23+
]
24+
}

0 commit comments

Comments
 (0)