aboutsummaryrefslogtreecommitdiff
path: root/keyboards/handwired/ferris/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/ferris/keymaps/default/keymap.c')
-rw-r--r--keyboards/handwired/ferris/keymaps/default/keymap.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/keyboards/handwired/ferris/keymaps/default/keymap.c b/keyboards/handwired/ferris/keymaps/default/keymap.c
new file mode 100644
index 000000000..faf5203e7
--- /dev/null
+++ b/keyboards/handwired/ferris/keymaps/default/keymap.c
@@ -0,0 +1,39 @@
1/*
2Copyright 2020 Pierre Chevalier <pierrechevalier83@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19
20// Blank template at the bottom
21const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
22/* Keymap 0: Qwerty
23 *
24 * ,-----------------------------. ,-----------------------------.
25 * | Q | W | E | R | T | | Y | U | I | O | P |
26 * |-----+-----+-----+-----+-----| |-----------------------------|
27 * | A | S | D | F | G | | H | J | K | L | ; |
28 * |-----+-----+-----+-----+-----+ |-----------------------------|
29 * | Z | X | C | V | B | | N | M | < | > | ? |
30 * `-----+-----+-----+-----+-----+--. ,-+-----------------------------'
31 * | BSPC | SPC | | SPC | ENT |
32 * '------------' '-----------'
33 */
34[0] = LAYOUT(
35 KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
36 KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
37 KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
38 KC_BSPC, KC_SPC, KC_SPC, KC_ENT)
39};