diff options
author | dztech <moyi4681@users.noreply.github.com> | 2022-12-13 07:46:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 15:46:09 -0800 |
commit | 15ef0a7e3c178a1c2e1dbee0165ccee2545205ff (patch) | |
tree | 8dc8d117dec3b32eecf669d08a1c501c5c8ed7ec /keyboards/kbdfans/d45/lite/keymaps/default | |
parent | 68f550a3f25b3911ce8bbc77680f4e23e5faf424 (diff) |
[Keyboard] add d45 lite keyboard (#19288)
Co-authored-by: Joel Challis <git@zvecr.com>
Diffstat (limited to 'keyboards/kbdfans/d45/lite/keymaps/default')
-rw-r--r-- | keyboards/kbdfans/d45/lite/keymaps/default/keymap.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/kbdfans/d45/lite/keymaps/default/keymap.c b/keyboards/kbdfans/d45/lite/keymaps/default/keymap.c new file mode 100644 index 0000000000..b6d65cf180 --- /dev/null +++ b/keyboards/kbdfans/d45/lite/keymaps/default/keymap.c @@ -0,0 +1,24 @@ +/* Copyright 2022 dztech kbdfans + * + * 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 + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [0] = LAYOUT( /* Base */ + KC_ESC, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, + KC_F2, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_HOME, + KC_F3, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END, + KC_F4, KC_LCTL, KC_LALT, KC_SPC, KC_SPC, KC_RALT, KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT), + }; |