[Keyboard] add tg67 (#18225)
This commit is contained in:
		
							parent
							
								
									6f804f76b4
								
							
						
					
					
						commit
						de0d342b82
					
				
							
								
								
									
										21
									
								
								keyboards/yandrstudio/tg67/board.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								keyboards/yandrstudio/tg67/board.h
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,21 @@ | |||||||
|  | /* Copyright 2022 JasonRen(biu)
 | ||||||
|  |  * | ||||||
|  |  * 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/>.
 | ||||||
|  |  */ | ||||||
|  | #pragma once | ||||||
|  | 
 | ||||||
|  | #include_next "board.h" | ||||||
|  | 
 | ||||||
|  | #undef STM32_HSECLK | ||||||
|  | #define STM32_HSECLK 16000000 | ||||||
							
								
								
									
										101
									
								
								keyboards/yandrstudio/tg67/config.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										101
									
								
								keyboards/yandrstudio/tg67/config.h
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,101 @@ | |||||||
|  | /* Copyright 2022 JasonRen(biu)
 | ||||||
|  |  * | ||||||
|  |  * 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/>.
 | ||||||
|  |  */ | ||||||
|  | #pragma once | ||||||
|  | 
 | ||||||
|  | #include "config_common.h" | ||||||
|  | 
 | ||||||
|  | /* key matrix size */ | ||||||
|  | #define MATRIX_ROWS 5 | ||||||
|  | #define MATRIX_COLS 15 | ||||||
|  | 
 | ||||||
|  | /* COL2ROW or ROW2COL */ | ||||||
|  | #define DIODE_DIRECTION COL2ROW | ||||||
|  | 
 | ||||||
|  | #define MATRIX_COL_PINS {  B2,  B10, B11, A8,  A9,  A10, B5,  A15, B3,  A2,  A3,  B4,  A4,  A5,  A6 } | ||||||
|  | #define MATRIX_ROW_PINS {  B0,  B6,  B1,  B7,  A1 } | ||||||
|  | 
 | ||||||
|  | /* Set 0 if debouncing isn't needed */ | ||||||
|  | #define DEBOUNCE 5 | ||||||
|  | 
 | ||||||
|  | /* RGB Matrix */ | ||||||
|  | #ifdef RGB_MATRIX_ENABLE | ||||||
|  | 
 | ||||||
|  | #    define RGB_DI_PIN A7 | ||||||
|  | #    define RGBLED_NUM 69 | ||||||
|  | #    define DRIVER_LED_TOTAL RGBLED_NUM | ||||||
|  | 
 | ||||||
|  | #    define RGB_MATRIX_MAXIMUM_BRIGHTNESS 250 | ||||||
|  | #    define RGBLIGHT_VAL_STEP 5 | ||||||
|  | #    define RGB_DISABLE_WHEN_USB_SUSPENDED | ||||||
|  | #    define RGB_MATRIX_CENTER { 112, 32 } | ||||||
|  | #    define RGB_MATRIX_KEYPRESSES | ||||||
|  | #    define RGB_MATRIX_FRAMEBUFFER_EFFECTS | ||||||
|  | #    define RGBLIGHT_ANIMATIONS | ||||||
|  | 
 | ||||||
|  | #   define ENABLE_RGB_MATRIX_ALPHAS_MODS | ||||||
|  | #   define ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN | ||||||
|  | #   define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT | ||||||
|  | #   define ENABLE_RGB_MATRIX_BREATHING | ||||||
|  | #   define ENABLE_RGB_MATRIX_BAND_SAT | ||||||
|  | #   define ENABLE_RGB_MATRIX_BAND_VAL | ||||||
|  | #   define ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT | ||||||
|  | #   define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL | ||||||
|  | #   define ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT | ||||||
|  | #   define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL | ||||||
|  | #   define ENABLE_RGB_MATRIX_CYCLE_ALL | ||||||
|  | #   define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT | ||||||
|  | #   define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN | ||||||
|  | #   define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON | ||||||
|  | #   define ENABLE_RGB_MATRIX_CYCLE_OUT_IN | ||||||
|  | #   define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL | ||||||
|  | #   define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL | ||||||
|  | #   define ENABLE_RGB_MATRIX_CYCLE_SPIRAL | ||||||
|  | #   define ENABLE_RGB_MATRIX_DUAL_BEACON | ||||||
|  | #   define ENABLE_RGB_MATRIX_RAINBOW_BEACON | ||||||
|  | #   define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS | ||||||
|  | #   define ENABLE_RGB_MATRIX_RAINDROPS | ||||||
|  | #   define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS | ||||||
|  | #   define ENABLE_RGB_MATRIX_HUE_BREATHING | ||||||
|  | #   define ENABLE_RGB_MATRIX_HUE_PENDULUM | ||||||
|  | #   define ENABLE_RGB_MATRIX_HUE_WAVE | ||||||
|  | #   define ENABLE_RGB_MATRIX_PIXEL_RAIN | ||||||
|  | #   define ENABLE_RGB_MATRIX_PIXEL_FLOW | ||||||
|  | #   define ENABLE_RGB_MATRIX_PIXEL_FRACTAL | ||||||
|  | 
 | ||||||
|  | #   define ENABLE_RGB_MATRIX_TYPING_HEATMAP | ||||||
|  | #   define ENABLE_RGB_MATRIX_DIGITAL_RAIN | ||||||
|  | 
 | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_REACTIVE | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS | ||||||
|  | #   define ENABLE_RGB_MATRIX_SPLASH | ||||||
|  | #   define ENABLE_RGB_MATRIX_MULTISPLASH | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_SPLASH | ||||||
|  | #   define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | #   define WS2812_PWM_DRIVER PWMD3 | ||||||
|  | #   define WS2812_PWM_CHANNEL 2 | ||||||
|  | #   define WS2812_PWM_PAL_MODE 2 | ||||||
|  | #   define WS2812_DMA_STREAM STM32_DMA1_STREAM3 | ||||||
|  | #   define WS2812_DMA_CHANNEL 3 | ||||||
|  | 
 | ||||||
|  | #endif | ||||||
							
								
								
									
										23
									
								
								keyboards/yandrstudio/tg67/halconf.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								keyboards/yandrstudio/tg67/halconf.h
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,23 @@ | |||||||
|  | /* Copyright 2022 JasonRen(biu)
 | ||||||
|  |  * | ||||||
|  |  * 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/>.
 | ||||||
|  |  */ | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | #pragma once | ||||||
|  | #include_next <halconf.h> | ||||||
|  | 
 | ||||||
|  | #undef HAL_USE_PWM | ||||||
|  | #define HAL_USE_PWM    TRUE | ||||||
|  | 
 | ||||||
							
								
								
									
										362
									
								
								keyboards/yandrstudio/tg67/info.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										362
									
								
								keyboards/yandrstudio/tg67/info.json
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,362 @@ | |||||||
|  | { | ||||||
|  |     "keyboard_name": "tg67", | ||||||
|  |     "processor": "STM32F103", | ||||||
|  |     "bootloader": "stm32duino", | ||||||
|  |     "usb": { | ||||||
|  |         "pid": "0xAA8D", | ||||||
|  |         "device_version": "1.0.0" | ||||||
|  |     }, | ||||||
|  |     "layouts": { | ||||||
|  |         "LAYOUT": { | ||||||
|  |             "layout": [ | ||||||
|  |                 { | ||||||
|  |                     "label": "~", | ||||||
|  |                     "x": 0, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "!", | ||||||
|  |                     "x": 1, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "@", | ||||||
|  |                     "x": 2, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "#", | ||||||
|  |                     "x": 3, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "$", | ||||||
|  |                     "x": 4, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "%", | ||||||
|  |                     "x": 5, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "^", | ||||||
|  |                     "x": 6, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "&", | ||||||
|  |                     "x": 7, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "*", | ||||||
|  |                     "x": 8, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "(", | ||||||
|  |                     "x": 9, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": ")", | ||||||
|  |                     "x": 10, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "_", | ||||||
|  |                     "x": 11, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "+", | ||||||
|  |                     "x": 12, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Backspace", | ||||||
|  |                     "x": 13, | ||||||
|  |                     "y": 0, | ||||||
|  |                     "w": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Home", | ||||||
|  |                     "x": 15, | ||||||
|  |                     "y": 0 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Tab", | ||||||
|  |                     "x": 0, | ||||||
|  |                     "y": 1, | ||||||
|  |                     "w": 1.5 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Q", | ||||||
|  |                     "x": 1.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "W", | ||||||
|  |                     "x": 2.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "E", | ||||||
|  |                     "x": 3.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "R", | ||||||
|  |                     "x": 4.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "T", | ||||||
|  |                     "x": 5.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Y", | ||||||
|  |                     "x": 6.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "U", | ||||||
|  |                     "x": 7.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "I", | ||||||
|  |                     "x": 8.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "O", | ||||||
|  |                     "x": 9.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "P", | ||||||
|  |                     "x": 10.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "{", | ||||||
|  |                     "x": 11.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "}", | ||||||
|  |                     "x": 12.5, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "|", | ||||||
|  |                     "x": 13.5, | ||||||
|  |                     "y": 1, | ||||||
|  |                     "w": 1.5 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "End", | ||||||
|  |                     "x": 15, | ||||||
|  |                     "y": 1 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Caps Lock", | ||||||
|  |                     "x": 0, | ||||||
|  |                     "y": 2, | ||||||
|  |                     "w": 1.75 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "A", | ||||||
|  |                     "x": 1.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "S", | ||||||
|  |                     "x": 2.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "D", | ||||||
|  |                     "x": 3.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "F", | ||||||
|  |                     "x": 4.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "G", | ||||||
|  |                     "x": 5.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "H", | ||||||
|  |                     "x": 6.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "J", | ||||||
|  |                     "x": 7.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "K", | ||||||
|  |                     "x": 8.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "L", | ||||||
|  |                     "x": 9.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": ":", | ||||||
|  |                     "x": 10.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "\"", | ||||||
|  |                     "x": 11.75, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Enter", | ||||||
|  |                     "x": 12.75, | ||||||
|  |                     "y": 2, | ||||||
|  |                     "w": 2.25 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "PgUp", | ||||||
|  |                     "x": 15, | ||||||
|  |                     "y": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Shift", | ||||||
|  |                     "x": 0, | ||||||
|  |                     "y": 3, | ||||||
|  |                     "w": 2.25 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Z", | ||||||
|  |                     "x": 2.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "X", | ||||||
|  |                     "x": 3.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "C", | ||||||
|  |                     "x": 4.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "V", | ||||||
|  |                     "x": 5.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "B", | ||||||
|  |                     "x": 6.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "N", | ||||||
|  |                     "x": 7.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "M", | ||||||
|  |                     "x": 8.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "<", | ||||||
|  |                     "x": 9.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": ">", | ||||||
|  |                     "x": 10.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "?", | ||||||
|  |                     "x": 11.25, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Shift", | ||||||
|  |                     "x": 12.25, | ||||||
|  |                     "y": 3, | ||||||
|  |                     "w": 1.75 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "\u2191", | ||||||
|  |                     "x": 14, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "PgDn", | ||||||
|  |                     "x": 15, | ||||||
|  |                     "y": 3 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Ctrl", | ||||||
|  |                     "x": 0, | ||||||
|  |                     "y": 4, | ||||||
|  |                     "w": 1.25 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Win", | ||||||
|  |                     "x": 1.25, | ||||||
|  |                     "y": 4, | ||||||
|  |                     "w": 1.25 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Alt", | ||||||
|  |                     "x": 2.5, | ||||||
|  |                     "y": 4, | ||||||
|  |                     "w": 1.25 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "x": 3.75, | ||||||
|  |                     "y": 4, | ||||||
|  |                     "w": 6.25 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Alt", | ||||||
|  |                     "x": 10, | ||||||
|  |                     "y": 4, | ||||||
|  |                     "w": 1.25 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "Fn", | ||||||
|  |                     "x": 11.25, | ||||||
|  |                     "y": 4, | ||||||
|  |                     "w": 1.25 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "\u2190", | ||||||
|  |                     "x": 13, | ||||||
|  |                     "y": 4 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "\u2193", | ||||||
|  |                     "x": 14, | ||||||
|  |                     "y": 4 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "label": "\u2192", | ||||||
|  |                     "x": 15, | ||||||
|  |                     "y": 4 | ||||||
|  |                 } | ||||||
|  |             ] | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | } | ||||||
							
								
								
									
										31
									
								
								keyboards/yandrstudio/tg67/keymaps/default/keymap.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								keyboards/yandrstudio/tg67/keymaps/default/keymap.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,31 @@ | |||||||
|  | /* Copyright 2022 JasonRen(biu)
 | ||||||
|  |  * | ||||||
|  |  * 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 QMK_KEYBOARD_H | ||||||
|  | 
 | ||||||
|  | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||||
|  |     [0] = LAYOUT( | ||||||
|  |         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_BSPC, KC_HOME, | ||||||
|  |         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_BSLS, KC_END, | ||||||
|  |         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_PGUP, | ||||||
|  |         KC_LSFT, KC_Z,    KC_X,    KC_C,   KC_V,    KC_B,  KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH,          KC_RSFT, KC_UP,   KC_PGDN, | ||||||
|  |         KC_LCTL, KC_LGUI, KC_LALT,                  KC_SPC,                           KC_RALT, MO(1),            KC_LEFT, KC_DOWN, KC_RGHT), | ||||||
|  |     [1] = LAYOUT( | ||||||
|  |         KC_GRV,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  KC_DEL,  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, KC_TRNS, | ||||||
|  |         KC_TRNS, KC_TRNS, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,          KC_TRNS, KC_TRNS, | ||||||
|  |         KC_TRNS, RGB_TOG, RGB_MOD, RGB_RMOD,RGB_VAI, RGB_VAD, 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, KC_TRNS, KC_TRNS) | ||||||
|  | }; | ||||||
							
								
								
									
										43
									
								
								keyboards/yandrstudio/tg67/keymaps/via/keymap.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								keyboards/yandrstudio/tg67/keymaps/via/keymap.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,43 @@ | |||||||
|  | /* Copyright 2022 JasonRen(biu)
 | ||||||
|  |  * | ||||||
|  |  * 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 QMK_KEYBOARD_H | ||||||
|  | 
 | ||||||
|  | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||||
|  |     [0] = LAYOUT( | ||||||
|  |         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_BSPC, KC_HOME, | ||||||
|  |         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_BSLS, KC_END, | ||||||
|  |         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_PGUP, | ||||||
|  |         KC_LSFT, KC_Z,    KC_X,    KC_C,   KC_V,    KC_B,  KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH,          KC_RSFT, KC_UP,   KC_PGDN, | ||||||
|  |         KC_LCTL, KC_LGUI, KC_LALT,                  KC_SPC,                           KC_RALT, MO(1),            KC_LEFT, KC_DOWN, KC_RGHT), | ||||||
|  |     [1] = LAYOUT( | ||||||
|  |         KC_GRV,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  KC_DEL,  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, KC_TRNS, | ||||||
|  |         KC_TRNS, KC_TRNS, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,          KC_TRNS, KC_TRNS, | ||||||
|  |         KC_TRNS, RGB_TOG, RGB_MOD, RGB_RMOD,RGB_VAI, RGB_VAD, 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, KC_TRNS, KC_TRNS), | ||||||
|  |     [2] = LAYOUT( | ||||||
|  |         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, | ||||||
|  |         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, | ||||||
|  |         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, 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, KC_TRNS,                   KC_TRNS,                            KC_TRNS, KC_TRNS,          KC_TRNS, KC_TRNS, KC_TRNS), | ||||||
|  |     [3] = LAYOUT( | ||||||
|  |         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, | ||||||
|  |         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, | ||||||
|  |         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, 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, KC_TRNS,                   KC_TRNS,                            KC_TRNS, KC_TRNS,          KC_TRNS, KC_TRNS, KC_TRNS) | ||||||
|  | }; | ||||||
							
								
								
									
										1
									
								
								keyboards/yandrstudio/tg67/keymaps/via/rules.mk
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/yandrstudio/tg67/keymaps/via/rules.mk
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | |||||||
|  | VIA_ENABLE = yes | ||||||
							
								
								
									
										25
									
								
								keyboards/yandrstudio/tg67/mcuconf.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								keyboards/yandrstudio/tg67/mcuconf.h
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,25 @@ | |||||||
|  | /* Copyright 2022 JasonRen(biu)
 | ||||||
|  |  * | ||||||
|  |  * 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/>.
 | ||||||
|  |  */ | ||||||
|  | 
 | ||||||
|  | #pragma once | ||||||
|  | 
 | ||||||
|  | #include_next <mcuconf.h> | ||||||
|  | 
 | ||||||
|  | #undef STM32_PWM_USE_TIM3 | ||||||
|  | #define STM32_PWM_USE_TIM3 TRUE | ||||||
|  | 
 | ||||||
|  | #undef  STM32_PLLXTPRE | ||||||
|  | #define STM32_PLLXTPRE STM32_PLLXTPRE_DIV2 | ||||||
							
								
								
									
										22
									
								
								keyboards/yandrstudio/tg67/readme.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								keyboards/yandrstudio/tg67/readme.md
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,22 @@ | |||||||
|  | # tg67 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | A 65% keyboard with RGBs. | ||||||
|  | This keyboard use 16mhz HSE and APM32F103 as MCU. | ||||||
|  | 
 | ||||||
|  | - Keyboard Maintainer: https://github.com/jiaxin96 | ||||||
|  | - Hardware Supported: tg67 | ||||||
|  | - Hardware Availability: https://kineticlabs.com/ | ||||||
|  | 
 | ||||||
|  | Make example for this keyboard (after setting up your build environment): | ||||||
|  | 
 | ||||||
|  |     make yandrstudio/tg67:default | ||||||
|  | 
 | ||||||
|  | See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. | ||||||
|  | 
 | ||||||
|  | ## Bootloader | ||||||
|  | 
 | ||||||
|  | Enter the bootloader in 2 ways: | ||||||
|  | 
 | ||||||
|  | - **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key which is Escape in this keyboard) and plug in the keyboard | ||||||
|  | - **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available. | ||||||
							
								
								
									
										18
									
								
								keyboards/yandrstudio/tg67/rules.mk
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								keyboards/yandrstudio/tg67/rules.mk
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,18 @@ | |||||||
|  | # Wildcard to allow APM32 MCU
 | ||||||
|  | DFU_SUFFIX_ARGS = -p FFFF -v FFFF | ||||||
|  | 
 | ||||||
|  | # Build Options
 | ||||||
|  | #   change yes to no to disable
 | ||||||
|  | #
 | ||||||
|  | BOOTMAGIC_ENABLE = yes      # Enable Bootmagic Lite | ||||||
|  | MOUSEKEY_ENABLE = yes       # Mouse keys | ||||||
|  | EXTRAKEY_ENABLE = yes       # Audio control and System control | ||||||
|  | CONSOLE_ENABLE = no         # Console for debug | ||||||
|  | COMMAND_ENABLE = no         # Commands for debug and configuration | ||||||
|  | NKRO_ENABLE = yes           # Enable N-Key Rollover | ||||||
|  | BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality | ||||||
|  | RGBLIGHT_ENABLE = no       # Enable keyboard RGB underglow | ||||||
|  | AUDIO_ENABLE = no           # Audio output | ||||||
|  | RGB_MATRIX_ENABLE = yes     # Enable keyboard RGB Matrix | ||||||
|  | RGB_MATRIX_DRIVER = WS2812  # RGB matrix driver support | ||||||
|  | WS2812_DRIVER = pwm         # WS2812 RGB Driver | ||||||
							
								
								
									
										46
									
								
								keyboards/yandrstudio/tg67/tg67.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										46
									
								
								keyboards/yandrstudio/tg67/tg67.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,46 @@ | |||||||
|  | /* Copyright 2022 JasonRen(biu)
 | ||||||
|  |  * | ||||||
|  |  * 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 "tg67.h" | ||||||
|  | 
 | ||||||
|  | #ifdef RGB_MATRIX_ENABLE | ||||||
|  | 
 | ||||||
|  | led_config_t g_led_config = { | ||||||
|  |     { | ||||||
|  |         {54,  55,  56,  57,  58,  59,  60,  61,  62,  63,  64,  65,  66,  67,  68}, | ||||||
|  |         {53,  52,  51,  50,  49,  48,  47,  46,  45,  44,  43,  42,  41,  40,  39}, | ||||||
|  |         {25,  26,  27,  28,  29,  30,  31,  32,  33,  34,  35,  36,   NO_LED,  37,  38}, | ||||||
|  |         {24,  23,  22,  21,  20,  19,  18,  17,  16,  15,  14,   NO_LED,  13,  12,  11}, | ||||||
|  |         {0,  1,  2,  NO_LED,   NO_LED,  4,   NO_LED,  NO_LED,   NO_LED,  6,  7,   NO_LED,  8,  9,  10} | ||||||
|  |     }, | ||||||
|  |     { | ||||||
|  |         {0,64},{16,64},{32,64},{48,64},       {80,64},       {112,64},       {144,64},{160,64},       {192,64},{208,64},{224,64}, | ||||||
|  |         {224,48},{208,48},{192,48},       {160,48},{144,48},{128,48},{112,48},{96,48},{80,48},{64,48},{48,48},{32,48},{16,48},{0,48}, | ||||||
|  |         {0,32},{16,32},{32,32},{48,32},{64,32},{80,32},{96,32},{112,32},{128,32},{144,32},{160,32},{176,32},       {208,32},{224,32}, | ||||||
|  |         {224,16},{208,16},{192,16},{176,16},{160,16},{144,16},{128,16},{112,16},{96,16},{80,16},{64,16},{48,16},{32,16},{16,16},{0,16}, | ||||||
|  |         {0,0},{16,0},{32,0},{48,0},{64,0},{80,0},{96,0},{112,0},{128,0},{144,0},{160,0},{176,0},{192,0},{208,0},{224,0} | ||||||
|  |     }, | ||||||
|  |     { | ||||||
|  |       4, 4, 4, 4, 4, 4, 4, 4, 4, 4, | ||||||
|  |       4, 4, 4, 4, 4, 4, 4, 4, 4, 4, | ||||||
|  |       4, 4, 4, 4, 4, 4, 4, 4, 4, 4, | ||||||
|  |       4, 4, 4, 4, 4, 4, 4, 4, 4, 4, | ||||||
|  |       4, 4, 4, 4, 4, 4, 4, 4, 4, 4, | ||||||
|  |       4, 4, 4, 4, 4, 4, 4, 4, 4, 4, | ||||||
|  |       4, 4, 4, 4, 4, 4, 4, 4, 4 | ||||||
|  |     } | ||||||
|  | }; | ||||||
|  | 
 | ||||||
|  | #endif | ||||||
							
								
								
									
										33
									
								
								keyboards/yandrstudio/tg67/tg67.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								keyboards/yandrstudio/tg67/tg67.h
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,33 @@ | |||||||
|  | /* Copyright 2022 JasonRen(biu)
 | ||||||
|  |  * | ||||||
|  |  * 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/>.
 | ||||||
|  |  */ | ||||||
|  | #pragma once | ||||||
|  | 
 | ||||||
|  | #include "quantum.h" | ||||||
|  | 
 | ||||||
|  | #define LAYOUT( \ | ||||||
|  | 	K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, \ | ||||||
|  | 	K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114, \ | ||||||
|  | 	K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211,       K213, K214, \ | ||||||
|  | 	K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310,       K312, K313, K314, \ | ||||||
|  | 	K400, K401, K402,             K405,                   K409, K410,       K412, K413, K414  \ | ||||||
|  | ) { \ | ||||||
|  | 	{ K000,  K001,  K002,  K003,  K004,  K005,  K006,  K007,  K008,  K009,  K010,  K011,  K012,  K013,  K014 }, \ | ||||||
|  | 	{ K100,  K101,  K102,  K103,  K104,  K105,  K106,  K107,  K108,  K109,  K110,  K111,  K112,  K113,  K114 }, \ | ||||||
|  | 	{ K200,  K201,  K202,  K203,  K204,  K205,  K206,  K207,  K208,  K209,  K210,  K211,  KC_NO, K213,  K214 }, \ | ||||||
|  | 	{ K300,  K301,  K302,  K303,  K304,  K305,  K306,  K307,  K308,  K309,  K310,  KC_NO, K312,  K313,  K314 }, \ | ||||||
|  | 	{ K400,  K401,  K402,  KC_NO, KC_NO, K405,  KC_NO, KC_NO, KC_NO, K409,  K410,  KC_NO, K412,  K413,  K414 }  \ | ||||||
|  | } | ||||||
|  | 
 | ||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user