[Keyboard] Add mk47 keyboard (#19797)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: jack <0x6a73@protonmail.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Joy <chang.li@westberrytech.com> Co-authored-by: Joy Lee <joylee.lc@foxmail.com>
This commit is contained in:
		
							parent
							
								
									6f638572d8
								
							
						
					
					
						commit
						8d0e9e00c1
					
				
					 12 changed files with 489 additions and 0 deletions
				
			
		
							
								
								
									
										40
									
								
								keyboards/inland/mk47/config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								keyboards/inland/mk47/config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,40 @@
 | 
			
		|||
/* Copyright (C) 2023 jonylee@hfd
 | 
			
		||||
 *
 | 
			
		||||
 * 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
 | 
			
		||||
 | 
			
		||||
/* SPI Config for spi flash*/
 | 
			
		||||
#define SPI_DRIVER SPIDQ
 | 
			
		||||
#define SPI_SCK_PIN B3
 | 
			
		||||
#define SPI_MOSI_PIN B5
 | 
			
		||||
#define SPI_MISO_PIN B4
 | 
			
		||||
 | 
			
		||||
#define EXTERNAL_FLASH_SPI_SLAVE_SELECT_PIN C12
 | 
			
		||||
#define WEAR_LEVELING_BACKING_SIZE (4 * 1024)
 | 
			
		||||
 | 
			
		||||
/* I2C Config for LED Driver */
 | 
			
		||||
#define DRIVER_COUNT 1
 | 
			
		||||
#define DRIVER_ADDR_1 0b1110100
 | 
			
		||||
/* WB32 MCU has no default definition */
 | 
			
		||||
#define I2C1_OPMODE OPMODE_I2C
 | 
			
		||||
#define I2C1_CLOCK_SPEED 400000
 | 
			
		||||
 | 
			
		||||
#define RGB_MATRIX_LED_COUNT 47
 | 
			
		||||
#define RGB_DISABLE_WHEN_USB_SUSPENDED
 | 
			
		||||
 | 
			
		||||
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
 | 
			
		||||
#define RGB_MATRIX_KEYPRESSES
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										23
									
								
								keyboards/inland/mk47/halconf.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								keyboards/inland/mk47/halconf.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,23 @@
 | 
			
		|||
/* Copyright (C) 2023 jonylee@hfd
 | 
			
		||||
 *
 | 
			
		||||
 * 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
 | 
			
		||||
 | 
			
		||||
#define HAL_USE_I2C TRUE
 | 
			
		||||
#define HAL_USE_SPI TRUE
 | 
			
		||||
#define SPI_USE_WAIT TRUE
 | 
			
		||||
#define SPI_SELECT_MODE SPI_SELECT_MODE_PAD
 | 
			
		||||
 | 
			
		||||
#include_next <halconf.h>
 | 
			
		||||
							
								
								
									
										159
									
								
								keyboards/inland/mk47/info.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										159
									
								
								keyboards/inland/mk47/info.json
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,159 @@
 | 
			
		|||
{
 | 
			
		||||
    "keyboard_name": "MK47",
 | 
			
		||||
    "manufacturer": "Inland",
 | 
			
		||||
    "maintainer": "jonylee@hfd",
 | 
			
		||||
    "url":"",
 | 
			
		||||
    "usb": {
 | 
			
		||||
        "vid": "0xFFFE",
 | 
			
		||||
        "pid": "0x0002",
 | 
			
		||||
        "device_version": "0.0.1",
 | 
			
		||||
        "force_nkro": true,
 | 
			
		||||
        "suspend_wakeup_delay": 1000
 | 
			
		||||
    },
 | 
			
		||||
    "processor": "WB32FQ95",
 | 
			
		||||
    "bootloader": "wb32-dfu",
 | 
			
		||||
    "features": {
 | 
			
		||||
        "bootmagic": true,
 | 
			
		||||
        "mousekey": false,
 | 
			
		||||
        "extrakey": true,
 | 
			
		||||
        "console": false,
 | 
			
		||||
        "command": false,
 | 
			
		||||
        "nkro": true,
 | 
			
		||||
        "rgb_matrix": true
 | 
			
		||||
    },
 | 
			
		||||
    "matrix_pins": {
 | 
			
		||||
        "cols": ["C1","C2","C3","A0","A1","A2","A3","A4","A5","A6","A7","C4"],
 | 
			
		||||
        "rows": ["C6", "C7", "C8", "C9"]
 | 
			
		||||
    },
 | 
			
		||||
    "rgb_matrix": {
 | 
			
		||||
        "driver": "IS31FL3733",
 | 
			
		||||
        "max_brightness": 200,
 | 
			
		||||
        "animations": {
 | 
			
		||||
            "breathing": true,
 | 
			
		||||
            "cycle_all": true,
 | 
			
		||||
            "cycle_left_right": true,
 | 
			
		||||
            "cycle_up_down": true,
 | 
			
		||||
            "rainbow_moving_chevron": true,
 | 
			
		||||
            "cycle_out_in": true,
 | 
			
		||||
            "cycle_out_in_dual": true,
 | 
			
		||||
            "cycle_pinwheel": true,
 | 
			
		||||
            "cycle_spiral": true,
 | 
			
		||||
            "dual_beacon": true,
 | 
			
		||||
            "rainbow_beacon": true,
 | 
			
		||||
            "raindrops": true,
 | 
			
		||||
            "typing_heatmap": true,
 | 
			
		||||
            "solid_reactive_simple": true,
 | 
			
		||||
            "solid_reactive": true,
 | 
			
		||||
            "multisplash": true
 | 
			
		||||
        },
 | 
			
		||||
        "layout": [
 | 
			
		||||
            { "flags": 4, "matrix": [0, 0],  "x":   0, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 1],  "x":  20, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 2],  "x":  41, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 3],  "x":  61, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 4],  "x":  81, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 5],  "x": 102, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 6],  "x": 122, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 7],  "x": 143, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 8],  "x": 163, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 9],  "x": 183, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 10], "x": 204, "y": 0 },
 | 
			
		||||
            { "flags": 4, "matrix": [0, 11], "x": 224, "y": 0 },
 | 
			
		||||
 | 
			
		||||
            { "flags": 4, "matrix": [1, 0],   "x":   0, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 1],   "x":  20, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 2],   "x":  41, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 3],   "x":  61, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 4],   "x":  81, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 5],   "x": 102, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 6],   "x": 122, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 7],   "x": 143, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 8],   "x": 163, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 9],   "x": 183, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 10],  "x": 204, "y": 21},
 | 
			
		||||
            { "flags": 4, "matrix": [1, 11],  "x": 224, "y": 21},
 | 
			
		||||
 | 
			
		||||
            { "flags": 4, "matrix": [2, 0],   "x":   0, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 1],   "x":  20, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 2],   "x":  41, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 3],   "x":  61, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 4],   "x":  81, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 5],   "x": 102, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 6],   "x": 122, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 7],   "x": 143, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 8],   "x": 163, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 9],   "x": 183, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 10],  "x": 204, "y": 42},
 | 
			
		||||
            { "flags": 4, "matrix": [2, 11],  "x": 224, "y": 42},
 | 
			
		||||
 | 
			
		||||
            { "flags": 4, "matrix": [3, 0],   "x":   0, "y": 64},
 | 
			
		||||
            { "flags": 1, "matrix": [3, 1],   "x":  20, "y": 64},
 | 
			
		||||
            { "flags": 4, "matrix": [3, 2],   "x":  41, "y": 64},
 | 
			
		||||
            { "flags": 4, "matrix": [3, 3],   "x":  61, "y": 64},
 | 
			
		||||
            { "flags": 4, "matrix": [3, 4],   "x":  81, "y": 64},
 | 
			
		||||
            { "flags": 4, "matrix": [3, 5],   "x": 102, "y": 64},
 | 
			
		||||
            { "flags": 4, "matrix": [3, 7],   "x": 143, "y": 64},
 | 
			
		||||
            { "flags": 4, "matrix": [3, 8],   "x": 163, "y": 64},
 | 
			
		||||
            { "flags": 4, "matrix": [3, 9],   "x": 183, "y": 64},
 | 
			
		||||
            { "flags": 4, "matrix": [3, 10],  "x": 204, "y": 64},
 | 
			
		||||
            { "flags": 4, "matrix": [3, 11],  "x": 224, "y": 64}
 | 
			
		||||
        ]
 | 
			
		||||
    },
 | 
			
		||||
    "diode_direction": "ROW2COL",
 | 
			
		||||
    "layouts": {
 | 
			
		||||
        "LAYOUT": {
 | 
			
		||||
            "layout": [
 | 
			
		||||
                { "label": "Esc", "matrix": [0, 0],"x": 0, "y": 0 },
 | 
			
		||||
                { "label": "Q", "matrix": [0, 1], "x": 1, "y": 0 },
 | 
			
		||||
                { "label": "W", "matrix": [0, 2], "x": 2, "y": 0 },
 | 
			
		||||
                { "label": "E", "matrix": [0, 3], "x": 3, "y": 0 },
 | 
			
		||||
                { "label": "R", "matrix": [0, 4], "x": 4, "y": 0 },
 | 
			
		||||
                { "label": "T", "matrix": [0, 5], "x": 5, "y": 0 },
 | 
			
		||||
                { "label": "Y", "matrix": [0, 6], "x": 6, "y": 0 },
 | 
			
		||||
                { "label": "U", "matrix": [0, 7], "x": 7, "y": 0 },
 | 
			
		||||
                { "label": "I", "matrix": [0, 8], "x": 8, "y": 0 },
 | 
			
		||||
                { "label": "O", "matrix": [0, 9], "x": 9, "y": 0 },
 | 
			
		||||
                { "label": "P", "matrix": [0, 10], "x": 10, "y": 0 },
 | 
			
		||||
                { "label": "BackSpace", "matrix": [0, 11], "x": 11, "y": 0 },
 | 
			
		||||
 | 
			
		||||
                { "label": "Tab", "matrix": [1, 0], "x": 0, "y": 1 },
 | 
			
		||||
                { "label": "A", "matrix": [1, 1], "x": 1, "y": 1 },
 | 
			
		||||
                { "label": "S", "matrix": [1, 2], "x": 2, "y": 1 },
 | 
			
		||||
                { "label": "D", "matrix": [1, 3], "x": 3, "y": 1 },
 | 
			
		||||
                { "label": "F", "matrix": [1, 4], "x": 4, "y": 1 },
 | 
			
		||||
                { "label": "G", "matrix": [1, 5], "x": 5, "y": 1 },
 | 
			
		||||
                { "label": "H", "matrix": [1, 6], "x": 6, "y": 1 },
 | 
			
		||||
                { "label": "J", "matrix": [1, 7], "x": 7, "y": 1 },
 | 
			
		||||
                { "label": "K", "matrix": [1, 8], "x": 8, "y": 1 },
 | 
			
		||||
                { "label": "L", "matrix": [1, 9], "x": 9, "y": 1 },
 | 
			
		||||
                { "label": ":", "matrix": [1, 10], "x": 10, "y": 1 },
 | 
			
		||||
                { "label": "Enter", "matrix": [1, 11], "x": 11, "y": 1 },
 | 
			
		||||
 | 
			
		||||
                { "label": "Shift", "matrix": [2, 0], "x": 0, "y": 2 },
 | 
			
		||||
                { "label": "Z", "matrix": [2, 1], "x": 1, "y": 2 },
 | 
			
		||||
                { "label": "X", "matrix": [2, 2], "x": 2, "y": 2 },
 | 
			
		||||
                { "label": "C", "matrix": [2, 3], "x": 3, "y": 2 },
 | 
			
		||||
                { "label": "V", "matrix": [2, 4], "x": 4, "y": 2 },
 | 
			
		||||
                { "label": "B", "matrix": [2, 5], "x": 5, "y": 2 },
 | 
			
		||||
                { "label": "N", "matrix": [2, 6], "x": 6, "y": 2 },
 | 
			
		||||
                { "label": "M", "matrix": [2, 7], "x": 7, "y": 2 },
 | 
			
		||||
                { "label": "<", "matrix": [2, 8], "x": 8, "y": 2 },
 | 
			
		||||
                { "label": ">", "matrix": [2, 9], "x": 9, "y": 2 },
 | 
			
		||||
                { "label": "Up", "matrix": [2, 10], "x": 10, "y": 2 },
 | 
			
		||||
                { "label": "?", "matrix": [2, 11], "x": 11, "y": 2 },
 | 
			
		||||
 | 
			
		||||
                { "label": "Ctrl", "matrix": [3, 0], "x": 0, "y": 3  },
 | 
			
		||||
                { "label": "Win", "matrix": [3, 1],"x": 1, "y": 3 },
 | 
			
		||||
                { "label": "Alt", "matrix": [3, 2],"x": 2, "y": 3 },
 | 
			
		||||
                { "label": "Hyper", "matrix": [3, 3], "x": 3, "y": 3 },
 | 
			
		||||
                { "label": "Lower", "matrix": [3, 4], "x": 4, "y": 3 },
 | 
			
		||||
                { "label": "Space", "matrix": [3, 5], "w": 2, "x": 5, "y": 3 },
 | 
			
		||||
                { "label": "Ralse", "matrix": [3, 7], "x": 7, "y": 3 },
 | 
			
		||||
                { "label": "Fn", "matrix": [3, 8], "x": 8, "y": 3 },
 | 
			
		||||
                { "label": "Left", "matrix": [3, 9], "x": 9, "y": 3 },
 | 
			
		||||
                { "label": "Down", "matrix": [3, 10], "x": 10, "y": 3 },
 | 
			
		||||
                { "label": "Right", "matrix": [3, 11], "x": 11, "y": 3 }
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										41
									
								
								keyboards/inland/mk47/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								keyboards/inland/mk47/keymaps/default/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,41 @@
 | 
			
		|||
/* Copyright (C) 2023 jonylee@hfd
 | 
			
		||||
 *
 | 
			
		||||
 * 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
 | 
			
		||||
 | 
			
		||||
// clang-format off
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    [0] = LAYOUT(
 | 
			
		||||
        KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
 | 
			
		||||
        KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT,
 | 
			
		||||
        KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_UP, KC_SLSH,
 | 
			
		||||
        KC_LCTL, MO(2), KC_LALT, KC_DEL, KC_PGDN, KC_SPC, KC_PGUP, MO(1), KC_LEFT, KC_DOWN, KC_RGHT),
 | 
			
		||||
 | 
			
		||||
    [1] = LAYOUT(
 | 
			
		||||
        KC_TRNS, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, RGB_MOD,
 | 
			
		||||
        KC_TRNS, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_TRNS,
 | 
			
		||||
        KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MSTP, KC_MUTE, KC_MPRV, KC_MPLY, KC_MNXT, RGB_VAI, KC_TRNS,
 | 
			
		||||
        KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_VAD, KC_TRNS),
 | 
			
		||||
 | 
			
		||||
    [2] = LAYOUT(
 | 
			
		||||
        KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
 | 
			
		||||
        KC_CAPS, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_TRNS,
 | 
			
		||||
        KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_UP, KC_SLSH,
 | 
			
		||||
        KC_LCTL, KC_NO, KC_LALT, KC_DEL, KC_PGDN, KC_SPC, KC_PGUP, KC_NO, KC_LEFT, KC_DOWN, KC_RGHT)
 | 
			
		||||
};
 | 
			
		||||
// clang-format on
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										40
									
								
								keyboards/inland/mk47/keymaps/inland/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								keyboards/inland/mk47/keymaps/inland/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,40 @@
 | 
			
		|||
/* Copyright (C) 2023 jonylee@hfd
 | 
			
		||||
 *
 | 
			
		||||
 * 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
 | 
			
		||||
 | 
			
		||||
// clang-format off
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    [0] = LAYOUT(
 | 
			
		||||
        KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
 | 
			
		||||
        KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT,
 | 
			
		||||
        KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_UP, KC_SLSH,
 | 
			
		||||
        KC_LCTL, MO(2), KC_LALT, KC_DEL, KC_PGDN, KC_SPC, KC_PGUP, MO(1), KC_LEFT, KC_DOWN, KC_RGHT),
 | 
			
		||||
 | 
			
		||||
    [1] = LAYOUT(
 | 
			
		||||
        KC_TRNS, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, RGB_MOD,
 | 
			
		||||
        RGB_HUI, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_TRNS,
 | 
			
		||||
        KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MSEL, KC_MUTE, KC_MPRV, KC_MPLY, KC_MNXT, RGB_VAI, KC_TRNS,
 | 
			
		||||
        KC_TRNS, KC_TRNS, KC_TRNS, EE_CLR, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_SPD, RGB_VAD, RGB_SPI),
 | 
			
		||||
 | 
			
		||||
    [2] = LAYOUT(
 | 
			
		||||
        KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
 | 
			
		||||
        KC_CAPS, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_TRNS,
 | 
			
		||||
        KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_UP, KC_SLSH,
 | 
			
		||||
        KC_LCTL, KC_NO, KC_LALT, KC_DEL, KC_PGDN, KC_SPC, KC_PGUP, KC_NO, KC_LEFT, KC_DOWN, KC_RGHT)
 | 
			
		||||
};
 | 
			
		||||
// clang-format on
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/inland/mk47/keymaps/inland/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/inland/mk47/keymaps/inland/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
							
								
								
									
										41
									
								
								keyboards/inland/mk47/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								keyboards/inland/mk47/keymaps/via/keymap.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,41 @@
 | 
			
		|||
/* Copyright (C) 2023 jonylee@hfd
 | 
			
		||||
 *
 | 
			
		||||
 * 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
 | 
			
		||||
 | 
			
		||||
// clang-format off
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
 | 
			
		||||
    [0] = LAYOUT(
 | 
			
		||||
        KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
 | 
			
		||||
        KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT,
 | 
			
		||||
        KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_UP, KC_SLSH,
 | 
			
		||||
        KC_LCTL, MO(2), KC_LALT, KC_DEL, KC_PGDN, KC_SPC, KC_PGUP, MO(1), KC_LEFT, KC_DOWN, KC_RGHT),
 | 
			
		||||
 | 
			
		||||
    [1] = LAYOUT(
 | 
			
		||||
        KC_TRNS, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, RGB_MOD,
 | 
			
		||||
        RGB_HUI, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_TRNS,
 | 
			
		||||
        KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MSEL, KC_MUTE, KC_MPRV, KC_MPLY, KC_MNXT, RGB_VAI, KC_TRNS,
 | 
			
		||||
        KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_SPD, RGB_VAD, RGB_SPI),
 | 
			
		||||
 | 
			
		||||
    [2] = LAYOUT(
 | 
			
		||||
        KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
 | 
			
		||||
        KC_CAPS, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_TRNS,
 | 
			
		||||
        KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_UP, KC_SLSH,
 | 
			
		||||
        KC_LCTL, KC_NO, KC_LALT, KC_DEL, KC_PGDN, KC_SPC, KC_PGUP, KC_NO, KC_LEFT, KC_DOWN, KC_RGHT)
 | 
			
		||||
};
 | 
			
		||||
// clang-format on
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										1
									
								
								keyboards/inland/mk47/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboards/inland/mk47/keymaps/via/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
VIA_ENABLE = yes
 | 
			
		||||
							
								
								
									
										25
									
								
								keyboards/inland/mk47/mcuconf.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								keyboards/inland/mk47/mcuconf.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,25 @@
 | 
			
		|||
/* Copyright (C) 2023 jonylee@hfd
 | 
			
		||||
 *
 | 
			
		||||
 * 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 WB32_I2C_USE_I2C1
 | 
			
		||||
#define WB32_I2C_USE_I2C1 TRUE
 | 
			
		||||
 | 
			
		||||
#undef WB32_SPI_USE_QSPI
 | 
			
		||||
#define WB32_SPI_USE_QSPI TRUE
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										92
									
								
								keyboards/inland/mk47/mk47.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										92
									
								
								keyboards/inland/mk47/mk47.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,92 @@
 | 
			
		|||
/* Copyright (C) 2023 jonylee@hfd
 | 
			
		||||
 *
 | 
			
		||||
 * 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
 | 
			
		||||
const is31_led PROGMEM g_is31_leds[RGB_MATRIX_LED_COUNT] = {
 | 
			
		||||
/* Refer to IS31 manual for these locations
 | 
			
		||||
 *   driver
 | 
			
		||||
 *   |  R location
 | 
			
		||||
 *   |  |       G location
 | 
			
		||||
 *   |  |       |       B location
 | 
			
		||||
 *   |  |       |       | */
 | 
			
		||||
    {0, D_1,   E_1,   F_1},
 | 
			
		||||
    {0, D_2,   E_2,   F_2},
 | 
			
		||||
    {0, D_3,   E_3,   F_3},
 | 
			
		||||
    {0, D_4,   E_4,   F_4},
 | 
			
		||||
    {0, D_5,   E_5,   F_5},
 | 
			
		||||
    {0, D_6,   E_6,   F_6},
 | 
			
		||||
    {0, D_7,   E_7,   F_7},
 | 
			
		||||
    {0, D_8,   E_8,   F_8},
 | 
			
		||||
    {0, D_9,   E_9,   F_9},
 | 
			
		||||
    {0, D_10,  E_10,  F_10},
 | 
			
		||||
    {0, D_11,  E_11,  F_11},
 | 
			
		||||
    {0, D_12,  E_12,  F_12},
 | 
			
		||||
 | 
			
		||||
    {0, G_1,   H_1,   I_1},
 | 
			
		||||
    {0, G_2,   H_2,   I_2},
 | 
			
		||||
    {0, G_3,   H_3,   I_3},
 | 
			
		||||
    {0, G_4,   H_4,   I_4},
 | 
			
		||||
    {0, G_5,   H_5,   I_5},
 | 
			
		||||
    {0, G_6,   H_6,   I_6},
 | 
			
		||||
    {0, G_7,   H_7,   I_7},
 | 
			
		||||
    {0, G_8,   H_8,   I_8},
 | 
			
		||||
    {0, G_9,   H_9,   I_9},
 | 
			
		||||
    {0, G_10,  H_10,  I_10},
 | 
			
		||||
    {0, G_11,  H_11,  I_11},
 | 
			
		||||
    {0, G_12,  H_12,  I_12},
 | 
			
		||||
 | 
			
		||||
    {0, J_1,   K_1,   L_1},
 | 
			
		||||
    {0, J_2,   K_2,   L_2},
 | 
			
		||||
    {0, J_3,   K_3,   L_3},
 | 
			
		||||
    {0, J_4,   K_4,   L_4},
 | 
			
		||||
    {0, J_5,   K_5,   L_5},
 | 
			
		||||
    {0, J_6,   K_6,   L_6},
 | 
			
		||||
    {0, J_7,   K_7,   L_7},
 | 
			
		||||
    {0, J_8,   K_8,   L_8},
 | 
			
		||||
    {0, J_9,   K_9,   L_9},
 | 
			
		||||
    {0, J_10,  K_10,  L_10},
 | 
			
		||||
    {0, J_11,  K_11,  L_11},
 | 
			
		||||
    {0, J_12,  K_12,  L_12},
 | 
			
		||||
 | 
			
		||||
    {0, J_13,  K_13,  L_13},
 | 
			
		||||
    {0, J_14,  K_14,  L_14},
 | 
			
		||||
    {0, J_15,  K_15,  L_15},
 | 
			
		||||
    {0, J_16,  K_16,  L_16},
 | 
			
		||||
    {0, D_13,  E_13,  F_13},
 | 
			
		||||
    {0, D_14,  E_14,  F_14},
 | 
			
		||||
    {0, D_15,  E_15,  F_15},
 | 
			
		||||
    {0, G_13,  H_13,  I_13},
 | 
			
		||||
    {0, G_14,  H_14,  I_14},
 | 
			
		||||
    {0, G_15,  H_15,  I_15},
 | 
			
		||||
    {0, G_16,  H_16,  I_16},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef RGB_MATRIX_ENABLE
 | 
			
		||||
bool rgb_matrix_indicators_advanced_kb(uint8_t led_min, uint8_t led_max) {
 | 
			
		||||
    if (rgb_matrix_indicators_advanced_user(led_min, led_max) != true) {
 | 
			
		||||
        return false;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (host_keyboard_led_state().caps_lock) {
 | 
			
		||||
        RGB_MATRIX_INDICATOR_SET_COLOR(12, 255, 0, 0);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return true;
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
							
								
								
									
										24
									
								
								keyboards/inland/mk47/readme.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								keyboards/inland/mk47/readme.md
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,24 @@
 | 
			
		|||
# mk47
 | 
			
		||||
 | 
			
		||||
A customizable 40% keyboard.
 | 
			
		||||
 | 
			
		||||
* Keyboard Maintainer: [jonylee@hfd](https://github.com/jonylee1986)
 | 
			
		||||
* Hardware Supported: mk47
 | 
			
		||||
* Hardware Availability: [Inland](https://www.microcenter.com/product/661264/inland-47-keys-hot-swappable-rgb-wired-mechanical-keyboard,)
 | 
			
		||||
 | 
			
		||||
Make example for this keyboard (after setting up your build environment):
 | 
			
		||||
 | 
			
		||||
    make inland/mk47:default
 | 
			
		||||
 | 
			
		||||
Flashing example for this keyboard:
 | 
			
		||||
 | 
			
		||||
    make inland/mk47:default:flash
 | 
			
		||||
 | 
			
		||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
 | 
			
		||||
 | 
			
		||||
## Bootloader
 | 
			
		||||
 | 
			
		||||
Enter the bootloader in 2 ways:
 | 
			
		||||
 | 
			
		||||
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
 | 
			
		||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
 | 
			
		||||
							
								
								
									
										2
									
								
								keyboards/inland/mk47/rules.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								keyboards/inland/mk47/rules.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,2 @@
 | 
			
		|||
EEPROM_DRIVER = wear_leveling
 | 
			
		||||
WEAR_LEVELING_DRIVER = spi_flash
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue