diff options
author | Guido Bartolucci <guido@bartolucci.org> | 2023-06-03 16:39:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-03 14:39:13 -0600 |
commit | 23a9d1ffc75f522b431c1a2593d625aa9823e41e (patch) | |
tree | ad2903dd1b04db45870f96b2e0401730af03918c /keyboards/andean_condor/keymaps | |
parent | f6bbd4d2c5554b93351977933cea396db9456689 (diff) |
[Keyboard] Add Andean Condor (#21118)
Co-authored-by: Joel Challis <git@zvecr.com>
Diffstat (limited to 'keyboards/andean_condor/keymaps')
-rw-r--r-- | keyboards/andean_condor/keymaps/default/keymap.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/andean_condor/keymaps/default/keymap.c b/keyboards/andean_condor/keymaps/default/keymap.c new file mode 100644 index 0000000000..4d00610897 --- /dev/null +++ b/keyboards/andean_condor/keymaps/default/keymap.c @@ -0,0 +1,14 @@ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [0] = LAYOUT( + KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BACKSPACE, + KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SEMICOLON, KC_ENTER, + KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMMA, KC_DOT, KC_SLASH, LSFT(KC_SEMICOLON), + KC_5, KC_6, KC_7, KC_8, + KC_1, KC_2, KC_3, KC_4, KC_9, KC_0, KC_MINUS, KC_EQUAL + ) +}; |