[Keyboard] Add Elysian (#23949)
* adding Elysian * corrections from zvecr
This commit is contained in:
parent
90b043e01c
commit
603586800c
10 changed files with 177 additions and 0 deletions
19
keyboards/custommk/elysian/keymaps/default/keymap.c
Normal file
19
keyboards/custommk/elysian/keymaps/default/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, KC_ENT,
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue