aboutsummaryrefslogtreecommitdiff
path: root/keyboards/sidderskb/majbritt/keymaps/default/keymap.c
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2020-03-04 04:12:00 -0800
committerGitHub <noreply@github.com>2020-03-04 13:12:00 +0100
commit23eb9f4fe51b99aa5b93ab223e7464129ad1a4c2 (patch)
tree95fc55dcdb60159fdb3179b2951167fd89e1d1b2 /keyboards/sidderskb/majbritt/keymaps/default/keymap.c
parent31662af342b1ff3715fb3f8f0d0efd6078b58092 (diff)
downloadqmk_firmware-23eb9f4fe51b99aa5b93ab223e7464129ad1a4c2.tar.gz
qmk_firmware-23eb9f4fe51b99aa5b93ab223e7464129ad1a4c2.zip
New Keyboard: SiddersKB Majbritt (Pronounced My Brit) (#8260)
* Initial commit of majbritt * Add QMK and VIA support to majbritt * Change vendor and product id * Change name * Change make path * Move Majbritt into sidderskb directory * Update keyboards/sidderskb/majbritt/majbritt.c Co-Authored-By: Drashna Jaelre <drashna@live.com> Co-Authored-By: Ryan <fauxpark@gmail.com> * Update keyboards/sidderskb/majbritt/keymaps/default/config.h Co-Authored-By: Ryan <fauxpark@gmail.com> * remove unused file Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/sidderskb/majbritt/keymaps/default/keymap.c')
-rw-r--r--keyboards/sidderskb/majbritt/keymaps/default/keymap.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/keyboards/sidderskb/majbritt/keymaps/default/keymap.c b/keyboards/sidderskb/majbritt/keymaps/default/keymap.c
new file mode 100644
index 000000000..21cdd04ed
--- /dev/null
+++ b/keyboards/sidderskb/majbritt/keymaps/default/keymap.c
@@ -0,0 +1,34 @@
1/* Copyright 2020 MechMerlin
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include QMK_KEYBOARD_H
17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19 [0] = LAYOUT(
20 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_DEL,
21 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_ENT, KC_PGUP,
22 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_BSLS, KC_PGDN,
23 KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
24 KC_LCTL, KC_LALT, KC_SPC, MO(1), KC_BSPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT
25 ),
26 [1] = LAYOUT(
27 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET,
28 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
29 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
30 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
31 _______, _______, _______, _______, _______, _______, _______, _______, _______
32 ),
33
34};