]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/keymaps/rjhilgefort/keymap.c
[Keymap] Fix firmware errors when flashing Rev6 Planck (#6135)
[qmk_firmware.git] / keyboards / planck / keymaps / rjhilgefort / keymap.c
1 /* Copyright 2015-2017 Jack Humbert
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
17 #include QMK_KEYBOARD_H
18 #include "muse.h"
19
20 extern keymap_config_t keymap_config;
21
22 enum planck_layers {
23   _QWERTY,
24   _LOWER,
25   _RAISE,
26   _ADJUST
27 };
28
29 enum planck_keycodes {
30   QWERTY = SAFE_RANGE,
31   BACKLIT,
32   EXT_PLV
33 };
34
35 #define LOWER MO(_LOWER)
36 #define RAISE MO(_RAISE)
37
38 #define CTRL_ESC MT(MOD_LCTL, KC_ESC)
39 #define HYPER LCTL(LALT(QK_LGUI))
40
41 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
42
43 /* Qwerty
44 * ,-------------------------------------------------------------------------------------------------------.
45 * | Tab    |    Q   |    W   |    E   |    R   |   T   |   Y   |   U  |    I   |    O   |   P    | Bksp   |
46 * |--------+--------+--------+--------+--------+-------+-------+------+--------+--------+--------+--------|
47 * | Ct/Esc |    A   |    S   |    D   |    F   |   G   |   H   |   J  |    K   |    L   |   ;    |  "     |
48 * |--------+--------+--------+--------+--------+-------+-------+------+--------+--------+--------+--------|
49 * | Shift  |    Z   |    X   |    C   |    V   |   B   |   N   |   M  |    ,   |    .   |   /    | Enter  |
50 * |--------+--------+--------+--------+--------+-------+-------+------+--------+--------+--------+--------|
51 * |        |  Ctrl  | Raise  |   Alt  |   GUI  |     Space     | Lowr | Hyper  |        |        | Raise  |
52 * `-------------------------------------------------------------------------------------------------------'
53 */
54 [_QWERTY] = LAYOUT_planck_grid(
55   KC_TAB,   KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,   KC_Y,   KC_U,  KC_I,    KC_O,    KC_P,    KC_BSPC,
56   CTRL_ESC, KC_A,    KC_S,    KC_D,    KC_F,    KC_G,   KC_H,   KC_J,  KC_K,    KC_L,    KC_SCLN, KC_QUOT,
57   KC_LSFT,  KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,   KC_N,   KC_M,  KC_COMM, KC_DOT,  KC_SLSH, KC_ENT,
58   _______,  KC_LCTL, RAISE,   KC_LALT, KC_LGUI, KC_SPC, KC_SPC, LOWER, HYPER,   _______, _______, RAISE
59 ),
60
61 /* Lower
62 * ,-----------------------------------------------------------------------------------------------------------.
63 * |       |   \    |   /    |   [    |   ]    |   ~    |   |    |   =    |   +    |    -    |    _   |        |
64 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+---------+--------+--------|
65 * |       |   {    |   }    |   (    |   )    |   `    |   ←    |   ↓    |   ↑    |    →    |  Alt   |        |
66 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+---------+--------+--------|
67 * |       |   !    |   @    |   #    |   $    |   %    |   ^    |   &    |   *    |    (    |    )   |        |
68 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+---------+--------+--------|
69 * |       |        |        |        |        |                 |        |        |         |        |        |
70 * `-----------------------------------------------------------------------------------------------------------'
71 */
72 [_LOWER] = LAYOUT_planck_grid(
73   _______, KC_BSLS, KC_SLSH, KC_LBRC, KC_RBRC, KC_TILD, KC_PIPE, KC_EQL,  KC_PLUS, KC_MINS,  KC_UNDS, _______,
74   _______, KC_LCBR, KC_RCBR, KC_LPRN, KC_RPRN, KC_GRV,  KC_LEFT, KC_DOWN, KC_UP,   KC_RIGHT, KC_LALT, _______,
75   _______, KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN,  KC_RPRN, _______,
76   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,  _______, _______
77 ),
78
79 /* Raise
80 * ,----------------------------------------------------------------------------------------------------------.
81 * |       |        |        |        |        |        |        |   7    |   8    |   9    |        |        |
82 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
83 * |       | VolMte | Vol -  | Vol +  | Ply/Pse|        |        |   4    |   5    |   6    |        |        |
84 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
85 * |       | Trak ← | Trak → | Scrn - | Scrn + |        |        |   1    |   2    |   3    |        |        |
86 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
87 * |       |        |        |        |        |                 |        |   0    |   .    |        |        |
88 * `----------------------------------------------------------------------------------------------------------'
89 */
90 [_RAISE] = LAYOUT_planck_grid(
91   _______, _______, _______, _______, _______, _______, _______, KC_7,    KC_8,    KC_9,    _______, _______,
92   _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_MPLY, _______, _______, KC_4,    KC_5,    KC_6,    _______, _______,
93   _______, KC_MRWD, KC_MFFD, KC_SLCK, KC_PAUS, _______, _______, KC_1,    KC_2,    KC_3,    _______, _______,
94   _______, _______, _______, _______, _______, _______, _______, KC_0,    KC_0,    KC_DOT,  _______, _______
95 ),
96
97 /* Adjust (Lower + Raise)
98  * ,----------------------------------------------------------------------------------------------------------.
99  * |       | Reset  |        |        |        |        |        |        |        |        |        | Del    |
100  * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
101  * |       |        | MuMod  | AudOn  | AudOff |        |        | Qwerty |        |        |        |        |
102  * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
103  * |       | Voice- | Voice+ | MusOn  | Musoff | MIDIon | MIDIof | TermOn | TermOff|        |        |        |
104  * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
105  * |       |        |        |        |        |                 |        |        |        |        |        |
106  * `----------------------------------------------------------------------------------------------------------'
107  */
108 [_ADJUST] = LAYOUT_planck_grid(
109   _______, RESET,   _______, _______, _______, _______, _______, _______, _______,  _______, _______, KC_DEL,
110   _______, _______, MU_MOD,  AU_ON,   AU_OFF,  _______, _______, QWERTY,  _______,  _______, _______, _______,
111   _______, MUV_DE,  MUV_IN,  MU_ON,   MU_OFF,  MI_ON,   MI_OFF,  TERM_ON, TERM_OFF, _______, _______, _______,
112   _______, _______, _______, _______, _______, _______, _______, _______, _______,  _______, _______, _______
113 )
114
115 };
116
117 #ifdef AUDIO_ENABLE
118   float plover_song[][2]     = SONG(PLOVER_SOUND);
119   float plover_gb_song[][2]  = SONG(PLOVER_GOODBYE_SOUND);
120 #endif
121
122 uint32_t layer_state_set_user(uint32_t state) {
123   return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
124 }
125
126 bool music_mask_user(uint16_t keycode) {
127   switch (keycode) {
128     case RAISE:
129     case LOWER:
130       return false;
131     default:
132       return true;
133   }
134 }
135
136 /*
137 * Example
138 * ,----------------------------------------------------------------------------------------------------------.
139 * |       |        |        |        |        |        |        |        |        |        |        |        |
140 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
141 * |       |        |        |        |        |        |        |        |        |        |        |        |
142 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
143 * |       |        |        |        |        |        |        |        |        |        |        |        |
144 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
145 * |       |        |        |        |        |                 |        |        |        |        |        |
146 * `----------------------------------------------------------------------------------------------------------'
147 *
148 [_EXAMPLE] = LAYOUT_planck_grid(
149   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
150   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
151   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
152   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
153 ),
154 */