aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/planck/keymaps/rjhilgefort/config.h35
-rw-r--r--keyboards/planck/keymaps/rjhilgefort/keymap.c153
-rw-r--r--keyboards/planck/keymaps/rjhilgefort/readme.md63
-rw-r--r--keyboards/planck/keymaps/rjhilgefort/rules.mk0
4 files changed, 251 insertions, 0 deletions
diff --git a/keyboards/planck/keymaps/rjhilgefort/config.h b/keyboards/planck/keymaps/rjhilgefort/config.h
new file mode 100644
index 000000000..672c5d570
--- /dev/null
+++ b/keyboards/planck/keymaps/rjhilgefort/config.h
@@ -0,0 +1,35 @@
1#pragma once
2
3#ifdef AUDIO_ENABLE
4 #define STARTUP_SONG SONG(PLANCK_SOUND)
5 // #define STARTUP_SONG SONG(NO_SOUND)
6
7 #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
8 SONG(COLEMAK_SOUND), \
9 SONG(DVORAK_SOUND) \
10 }
11#endif
12
13/*
14 * MIDI options
15 */
16
17/* Prevent use of disabled MIDI features in the keymap */
18//#define MIDI_ENABLE_STRICT 1
19
20/* enable basic MIDI features:
21 - MIDI notes can be sent when in Music mode is on
22*/
23
24#define MIDI_BASIC
25
26/* enable advanced MIDI features:
27 - MIDI notes can be added to the keymap
28 - Octave shift and transpose
29 - Virtual sustain, portamento, and modulation wheel
30 - etc.
31*/
32//#define MIDI_ADVANCED
33
34/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
35//#define MIDI_TONE_KEYCODE_OCTAVES 2
diff --git a/keyboards/planck/keymaps/rjhilgefort/keymap.c b/keyboards/planck/keymaps/rjhilgefort/keymap.c
new file mode 100644
index 000000000..455aa5a36
--- /dev/null
+++ b/keyboards/planck/keymaps/rjhilgefort/keymap.c
@@ -0,0 +1,153 @@
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
19extern keymap_config_t keymap_config;
20
21enum planck_layers {
22 _QWERTY,
23 _LOWER,
24 _RAISE,
25 _ADJUST
26};
27
28enum planck_keycodes {
29 // QWERTY = SAFE_RANGE,
30 BACKLIT,
31 EXT_PLV
32};
33
34#define LOWER MO(_LOWER)
35#define RAISE MO(_RAISE)
36
37#define CTRL_ESC MT(MOD_LCTL, KC_ESC)
38#define HYPER LCTL(LALT(QK_LGUI))
39
40const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
41
42/* Qwerty
43* ,-------------------------------------------------------------------------------------------------------.
44* | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
45* |--------+--------+--------+--------+--------+-------+-------+------+--------+--------+--------+--------|
46* | Ct/Esc | A | S | D | F | G | H | J | K | L | ; | " |
47* |--------+--------+--------+--------+--------+-------+-------+------+--------+--------+--------+--------|
48* | Shift | Z | X | C | V | B | N | M | , | . | / | Enter |
49* |--------+--------+--------+--------+--------+-------+-------+------+--------+--------+--------+--------|
50* | | Ctrl | Raise | Alt | GUI | Space | Lowr | Hyper | | | Raise |
51* `-------------------------------------------------------------------------------------------------------'
52*/
53[_QWERTY] = LAYOUT_planck_grid(
54 {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC},
55 {CTRL_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT},
56 {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT },
57 {_______, KC_LCTL, RAISE, KC_LALT, KC_LGUI, KC_SPC, KC_SPC, LOWER, HYPER, _______, _______, RAISE }
58),
59
60/* Lower
61* ,-----------------------------------------------------------------------------------------------------------.
62* | | \ | / | [ | ] | ~ | | | = | + | - | _ | |
63* |-------+--------+--------+--------+--------+--------+--------+--------+--------+---------+--------+--------|
64* | | { | } | ( | ) | ` | ← | ↓ | ↑ | → | Alt | |
65* |-------+--------+--------+--------+--------+--------+--------+--------+--------+---------+--------+--------|
66* | | ! | @ | # | $ | % | ^ | & | * | ( | ) | |
67* |-------+--------+--------+--------+--------+--------+--------+--------+--------+---------+--------+--------|
68* | | | | | | | | | | | |
69* `-----------------------------------------------------------------------------------------------------------'
70*/
71[_LOWER] = LAYOUT_planck_grid(
72 {_______, KC_BSLS, KC_SLSH, KC_LBRC, KC_RBRC, KC_TILD, KC_PIPE, KC_EQL, KC_PLUS, KC_MINS, KC_UNDS, _______},
73 {_______, KC_LCBR, KC_RCBR, KC_LPRN, KC_RPRN, KC_GRV, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, KC_LALT, _______},
74 {_______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______},
75 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
76),
77
78/* Raise
79* ,----------------------------------------------------------------------------------------------------------.
80* | | | | | | | | 7 | 8 | 9 | | |
81* |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
82* | | VolMte | Vol - | Vol + | Ply/Pse| | | 4 | 5 | 6 | | |
83* |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
84* | | Trak ← | Trak → | Scrn - | Scrn + | | | 1 | 2 | 3 | | |
85* |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
86* | | | | | | | | 0 | . | | |
87* `----------------------------------------------------------------------------------------------------------'
88*/
89[_RAISE] = LAYOUT_planck_grid(
90 {_______, _______, _______, _______, _______, _______, _______, KC_7, KC_8, KC_9, _______, _______},
91 {_______, KC_MUTE, KC_VOLD, KC_VOLU, KC_MPLY, _______, _______, KC_4, KC_5, KC_6, _______, _______},
92 {_______, KC_MRWD, KC_MFFD, KC_SLCK, KC_PAUS, _______, _______, KC_1, KC_2, KC_3, _______, _______},
93 {_______, _______, _______, _______, _______, _______, _______, KC_0, KC_0, KC_DOT, _______, _______}
94),
95
96/* Adjust (Lower + Raise)
97 * ,----------------------------------------------------------------------------------------------------------.
98 * | | Reset | | | | | | | | | | Del |
99 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
100 * | | | MuMod | AudOn | AudOff | | | Qwerty | | | | |
101 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
102 * | | Voice- | Voice+ | MusOn | Musoff | MIDIon | MIDIof | TermOn | TermOff| | | |
103 * |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
104 * | | | | | | | | | | | |
105 * `----------------------------------------------------------------------------------------------------------'
106 */
107[_ADJUST] = LAYOUT_planck_grid(
108 {_______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL },
109 {_______, _______, MU_MOD, AU_ON, AU_OFF, _______, _______, QWERTY, _______, _______, _______, _______},
110 {_______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, TERM_ON, TERM_OFF, _______, _______, _______},
111 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
112)
113
114};
115
116#ifdef AUDIO_ENABLE
117 float plover_song[][2] = SONG(PLOVER_SOUND);
118 float plover_gb_song[][2] = SONG(PLOVER_GOODBYE_SOUND);
119#endif
120
121uint32_t layer_state_set_user(uint32_t state) {
122 return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
123}
124
125bool music_mask_user(uint16_t keycode) {
126 switch (keycode) {
127 case RAISE:
128 case LOWER:
129 return false;
130 default:
131 return true;
132 }
133}
134
135/*
136* Example
137* ,----------------------------------------------------------------------------------------------------------.
138* | | | | | | | | | | | | |
139* |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
140* | | | | | | | | | | | | |
141* |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
142* | | | | | | | | | | | | |
143* |-------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
144* | | | | | | | | | | | |
145* `----------------------------------------------------------------------------------------------------------'
146*
147[_EXAMPLE] = LAYOUT_planck_grid(
148 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______},
149 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______},
150 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______},
151 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
152),
153*/
diff --git a/keyboards/planck/keymaps/rjhilgefort/readme.md b/keyboards/planck/keymaps/rjhilgefort/readme.md
new file mode 100644
index 000000000..f446a7619
--- /dev/null
+++ b/keyboards/planck/keymaps/rjhilgefort/readme.md
@@ -0,0 +1,63 @@
1# [🐦 @rjhilgefort](https://twitter.com/rjhilgefort) Planck Layout
2
3A simple and practical layout featuring:
4
5- Hyper Key === CTRL + ALT + GUI
6- Ctrl/Esc key that is CTRL when held and ESC when tapped
7- Symbols layer that focuses on coding
8- Numpad + media layer
9
10![Imgur](https://i.imgur.com/elygxAb.jpg)
11
12
13## Main
14```
15,-------------------------------------------------------------------------------------------------------.
16| Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
17|--------|--------|--------|--------|--------|-------|-------|------|--------|--------|--------|--------|
18| Ct/Esc | A | S | D | F | G | H | J | K | L | ; | " |
19|--------|--------|--------|--------|--------|-------|-------|------|--------|--------|--------|--------|
20| Shift | Z | X | C | V | B | N | M | , | . | / | Enter |
21|--------|--------|--------|--------|--------|-------|-------|------|--------|--------|--------|--------|
22| | Ctrl | Raise | Alt | GUI | Space | Lowr | Hyper | | | Raise |
23`-------------------------------------------------------------------------------------------------------'
24```
25
26## Lower
27```
28,-----------------------------------------------------------------------------------------------------------.
29| | \ | / | [ | ] | ~ | | | = | + | - | _ | |
30|-------|--------|--------|--------|--------|--------|--------|--------|--------|---------|--------|--------|
31| | { | } | ( | ) | ` | ← | ↓ | ↑ | → | Alt | |
32|-------|--------|--------|--------|--------|--------|--------|--------|--------|---------|--------|--------|
33| | ! | @ | # | $ | % | ^ | & | * | ( | ) | |
34|-------|--------|--------|--------|--------|--------|--------|--------|--------|---------|--------|--------|
35| | | | | | | | | | | |
36`-----------------------------------------------------------------------------------------------------------'
37```
38
39## Raise
40```
41,----------------------------------------------------------------------------------------------------------.
42| | | | | | | | 7 | 8 | 9 | | |
43|-------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|
44| | VolMte | Vol - | Vol + | Ply/Pse| | | 4 | 5 | 6 | | |
45|-------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|
46| | Trak ← | Trak → | Scrn - | Scrn + | | | 1 | 2 | 3 | | |
47|-------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|
48| | | | | | | | 0 | . | | |
49`----------------------------------------------------------------------------------------------------------'
50```
51
52## Adjust (Lower + Raise)
53```
54,----------------------------------------------------------------------------------------------------------.
55| | Reset | | | | | | | | | | Del |
56|-------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|
57| | | MuMod | AudOn | AudOff | | | Qwerty | | | | |
58|-------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|
59| | Voice- | Voice+ | MusOn | Musoff | MIDIon | MIDIof | TermOn | TermOff| | | |
60|-------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|
61| | | | | | | | | | | |
62`----------------------------------------------------------------------------------------------------------'
63```
diff --git a/keyboards/planck/keymaps/rjhilgefort/rules.mk b/keyboards/planck/keymaps/rjhilgefort/rules.mk
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/keyboards/planck/keymaps/rjhilgefort/rules.mk