mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-06-19 03:57:57 -04:00
[Keyboard] Add alhenkb macropad (#20123)
This commit is contained in:
parent
4313dfc796
commit
bc114cfbc4
2 changed files with 28 additions and 0 deletions
27
keyboards/alhenkb/macropad5x4/keymaps/via/keymap.c
Normal file
27
keyboards/alhenkb/macropad5x4/keymaps/via/keymap.c
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2023 QMK
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
/*
|
||||
* ┌───┬───┬───┬───┐
|
||||
* │ 1 │ 2 │ 3 │ 4 │
|
||||
* ├───┼───┼───┼───┤
|
||||
* │ 5 │ 6 │ 7 │ 8 │
|
||||
* ├───┼───┼───┼───┤
|
||||
* │ Q │ W │ E │ R │
|
||||
* ├───┼───┼───┼───┤
|
||||
* │ A │ S │ D │ F │
|
||||
* ├───┼───┼───┼───┤
|
||||
* │ Z │ X │ C │ V │
|
||||
* └───────┴───┴───┘
|
||||
*/
|
||||
[0] = LAYOUT_ortho_5x4(
|
||||
KC_P1, KC_P2, KC_P3, KC_P4,
|
||||
KC_P5, KC_P6, KC_P7, KC_P8,
|
||||
KC_Q, KC_W, KC_E, KC_R,
|
||||
KC_A, KC_S, KC_D, KC_F,
|
||||
KC_Z, KC_X, KC_C, KC_V
|
||||
),
|
||||
};
|
1
keyboards/alhenkb/macropad5x4/keymaps/via/rules.mk
Normal file
1
keyboards/alhenkb/macropad5x4/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1 @@
|
|||
VIA_ENABLE = yes
|
Loading…
Add table
Add a link
Reference in a new issue