]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/40percentclub/foobar/keymaps/default/keymap.c
[Keyboard] Add QMK configurator JSON for Alice PCB (#6397)
[qmk_firmware.git] / keyboards / 40percentclub / foobar / keymaps / default / keymap.c
1 /* Copyright 2018
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
18 enum foobar_layers {
19   QWERTY,
20   FN1,
21   FN2,
22   FN3,
23   FN4,
24   FN5
25 };
26
27 #define FN1_SPC  LT(FN1, KC_SPC)
28 #define FN2_BSC  LT(FN2, KC_BSPC)
29 #define FN3_C    LT(FN3, KC_C)
30 #define FN4_V    LT(FN4, KC_V)
31 #define FN5_B    LT(FN5, KC_B)
32 #define RALT_N   RALT_T(KC_N)
33 #define LALT_X   LALT_T(KC_X)
34 #define LCTL_Z   LCTL_T(KC_Z)
35 #define RCTL_M   RCTL_T(KC_M)
36 #define LSFT_ENT LSFT_T(KC_ENT)
37 #define RGUI_ESC RGUI_T(KC_ESC)
38
39 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
40   [QWERTY] = LAYOUT_split(
41     KC_Q,   KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,
42     KC_A,   KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    RGUI_ESC,
43     LCTL_Z, LALT_X,  FN3_C,   FN4_V,   FN2_BSC, FN1_SPC, FN5_B,   RALT_N,  RCTL_M,  LSFT_ENT
44   ),
45
46   [FN1] = LAYOUT_split(
47     KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,
48     KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,
49     _______, _______, _______, _______, KC_DEL,  _______, _______, _______, _______, _______
50   ),
51
52   [FN2] = LAYOUT_split(
53     KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN,
54     KC_F11,  KC_F12,  _______, _______, _______, _______, _______, _______, _______, KC_GRV,
55     _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
56   ),
57
58   [FN3] = LAYOUT_split(
59     _______, _______, _______, _______, _______, KC_MINS, KC_EQL,  KC_LBRC, KC_RBRC, KC_BSLS,
60     KC_TAB,  _______, _______, _______, _______, KC_COMM, KC_DOT,  KC_SLSH, KC_SCLN, KC_QUOT,
61     _______, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT
62   ),
63
64   [FN4] = LAYOUT_split(
65     _______, _______, _______, _______, _______, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
66     KC_TAB,  _______, _______, _______, _______, KC_LABK, KC_RABK, KC_QUES, KC_COLN, KC_DQUO,
67     _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
68   ),
69
70   [FN5] = LAYOUT_split(
71     _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
72     _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
73     _______, _______, _______, _______, _______, RESET,   _______, _______, _______, _______
74   ),
75 };
76
77 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
78   return true;
79 }
80
81 void matrix_init_user(void) {
82
83 }
84
85 void matrix_scan_user(void) {
86
87 }
88
89 void led_set_user(uint8_t usb_led) {
90
91 }