]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/keymaps/basic/keymap.c
Adds support for Planck Rev 6 (#2666)
[qmk_firmware.git] / keyboards / planck / keymaps / basic / keymap.c
1 #pragma message "You may need to add LAYOUT_planck_grid to your keymap layers - see default for an example"
2 #include "planck.h"
3
4 // Each layer gets a name for readability, which is then used in the keymap matrix below.
5 // The underscores don't mean anything - you can have a layer called STUFF or any other name.
6 // Layer names don't all need to be of the same length, obviously, and you can also skip them
7 // entirely and just use numbers.
8
9 // Fillers to make layering more clear
10 #define _______ KC_TRNS
11 #define XXXXXXX KC_NO
12
13 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
14
15 /* Qwerty
16  * ,-----------------------------------------------------------------------------------.
17  * | Tab  |   Q  |   W  |   E  |   R  |   T  |   Y  |   U  |   I  |   O  |   P  | Bksp |
18  * |------+------+------+------+------+-------------+------+------+------+------+------|
19  * | Esc  |   A  |   S  |   D  |   F  |   G  |   H  |   J  |   K  |   L  |   ;  |  "   |
20  * |------+------+------+------+------+------|------+------+------+------+------+------|
21  * | Shift|   Z  |   X  |   C  |   V  |   B  |   N  |   M  |   ,  |   .  |   /  |Enter |
22  * |------+------+------+------+------+------+------+------+------+------+------+------|
23  * | Brite| Ctrl | Alt  | GUI  |Lower |    Space    |Raise | Left | Down |  Up  |Right |
24  * `-----------------------------------------------------------------------------------'
25  */
26 [0] = {
27   {KC_TAB,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_BSPC},
28   {KC_ESC,  KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT},
29   {KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_ENT },
30   {KC_RSFT, KC_LCTL, KC_LALT, KC_LGUI, M(1),    KC_SPC,  KC_SPC,   M(2),   KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT}
31 },
32
33 /* Lower
34  * ,-----------------------------------------------------------------------------------.
35  * |   ~  |   !  |   @  |   #  |   $  |   %  |   ^  |   &  |   *  |   (  |   )  | Bksp |
36  * |------+------+------+------+------+-------------+------+------+------+------+------|
37  * | Del  |  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |   _  |   +  |   {  |   }  |  |   |
38  * |------+------+------+------+------+------|------+------+------+------+------+------|
39  * |      |  F7  |  F8  |  F9  |  F10 |  F11 |  F12 |ISO ~ |ISO | |      |      |Enter |
40  * |------+------+------+------+------+------+------+------+------+------+------+------|
41  * |Reset |      |      |      |      |             |      | Next | Vol- | Vol+ | Play |
42  * `-----------------------------------------------------------------------------------'
43  */
44 [1] = {
45   {KC_TILD, KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC},
46   {KC_DEL,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE},
47   {_______, KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,S(KC_NUHS),S(KC_NUBS),_______, _______, _______},
48   {RESET,   _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY}
49 },
50
51 /* Raise
52  * ,-----------------------------------------------------------------------------------.
53  * |   `  |   1  |   2  |   3  |   4  |   5  |   6  |   7  |   8  |   9  |   0  | Bksp |
54  * |------+------+------+------+------+-------------+------+------+------+------+------|
55  * | Del  |  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |   -  |   =  |   [  |   ]  |  \   |
56  * |------+------+------+------+------+------|------+------+------+------+------+------|
57  * |      |  F7  |  F8  |  F9  |  F10 |  F11 |  F12 |ISO # |ISO / |      |      |Enter |
58  * |------+------+------+------+------+------+------+------+------+------+------+------|
59  * |Reset |      |      |      |      |             |      | Next | Vol- | Vol+ | Play |
60  * `-----------------------------------------------------------------------------------'
61  */
62 [2] = {
63   {KC_GRV,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_BSPC},
64   {KC_DEL,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_MINS, KC_EQL,  KC_LBRC, KC_RBRC, KC_BSLS},
65   {_______, KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  KC_NUHS, KC_NUBS, _______, _______, _______},
66   {RESET,   _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY}
67 },
68
69
70 };
71
72 const uint16_t PROGMEM fn_actions[] = {
73
74 };
75
76 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
77 {
78   switch(id) {
79     case 1:
80       if (record->event.pressed) {
81         layer_on(1);
82       } else {
83         layer_off(1);
84       }
85       break;
86     case 2:
87       if (record->event.pressed) {
88         layer_on(2);
89       } else {
90         layer_off(2);
91       }
92       break;
93   }
94   return MACRO_NONE;
95 };