mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-07-06 03:40:35 -04:00
[Keyboard] Add Elysian (#23949)
* adding Elysian * corrections from zvecr
This commit is contained in:
parent
d5862391f4
commit
360731c4d6
3 changed files with 27 additions and 0 deletions
6
keyboards/custommk/elysian/keymaps/via/config.h
Normal file
6
keyboards/custommk/elysian/keymaps/via/config.h
Normal file
|
@ -0,0 +1,6 @@
|
|||
// Copyright 2024 customMK
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#define DYNAMIC_KEYMAP_MACRO_COUNT 128
|
19
keyboards/custommk/elysian/keymaps/via/keymap.c
Normal file
19
keyboards/custommk/elysian/keymaps/via/keymap.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
// Copyright 2024 customMK
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT(
|
||||
KC_ESC, MO(1),
|
||||
KC_Y, KC_U, KC_I, KC_O, KC_P,
|
||||
KC_H, KC_J, KC_K, KC_L, KC_SCLN,
|
||||
KC_N, KC_M, KC_COMMA, KC_DOT, KC_SLASH
|
||||
)
|
||||
};
|
||||
|
||||
#if defined(ENCODER_MAP_ENABLE)
|
||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
||||
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU), ENCODER_CCW_CW(KC_WH_D, KC_WH_U) }
|
||||
};
|
||||
#endif
|
2
keyboards/custommk/elysian/keymaps/via/rules.mk
Normal file
2
keyboards/custommk/elysian/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1,2 @@
|
|||
VIA_ENABLE = yes
|
||||
ENCODER_MAP_ENABLE = yes
|
Loading…
Add table
Add a link
Reference in a new issue