mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-09 17:14:18 -04:00
Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
246379e4b9
2 changed files with 50 additions and 0 deletions
48
keyboards/evyd13/nt210/keymaps/via/keymap.c
Normal file
48
keyboards/evyd13/nt210/keymaps/via/keymap.c
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
// Copyright 2022 Evelien Dekkers (@evyd13)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
|
// Defines names for use in layer keycodes and the keymap
|
||||||
|
enum layer_names {
|
||||||
|
_BASE,
|
||||||
|
_FN1,
|
||||||
|
_FN2,
|
||||||
|
_FN3,
|
||||||
|
};
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
|
[_BASE] = LAYOUT_ortho_6x4(
|
||||||
|
KC_ESC, KC_TAB, KC_EQL, KC_BSPC,
|
||||||
|
KC_NUM, KC_PSLS, KC_PAST, KC_PMNS,
|
||||||
|
KC_P7, KC_P8, KC_P9, KC_PPLS,
|
||||||
|
KC_P4, KC_P5, KC_P6, KC_NO,
|
||||||
|
KC_P1, KC_P2, KC_P3, KC_PENT,
|
||||||
|
KC_P0, KC_NO, KC_PDOT, KC_NO),
|
||||||
|
|
||||||
|
[_FN1] = LAYOUT_ortho_6x4(
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______),
|
||||||
|
|
||||||
|
[_FN2] = LAYOUT_ortho_6x4(
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______),
|
||||||
|
|
||||||
|
[_FN3] = LAYOUT_ortho_6x4(
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______),
|
||||||
|
|
||||||
|
};
|
2
keyboards/evyd13/nt210/keymaps/via/rules.mk
Normal file
2
keyboards/evyd13/nt210/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
VIA_ENABLE = yes
|
||||||
|
LTO_ENABLE = yes
|
Loading…
Add table
Add a link
Reference in a new issue