aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjotix <47826561+jotix@users.noreply.github.com>2019-02-22 13:47:42 -0300
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-02-22 08:47:42 -0800
commit24a8bc3fd00ecb435c5d34e72dc7768fbf76e14a (patch)
tree57ac6c0aafccae8aed24e23b89b391b14b6e0442
parent50139d9c5948e802bdb84489e0859fbacafdcec9 (diff)
downloadqmk_firmware-24a8bc3fd00ecb435c5d34e72dc7768fbf76e14a.tar.gz
qmk_firmware-24a8bc3fd00ecb435c5d34e72dc7768fbf76e14a.zip
Jotix keymaps (#5203)
* jotix 4x12 keymap * readme corrections * jotix ortho 4x12 keymap * jotix ortho 4x12 keymap * jotix ortho 4x12 keymap * jotix ortho 4x12 keymap * jotix ortho 4x12 keymap * jotix ortho 4x12 keymap * jotix ortho 4x4 keymap * jotix ortho 4x4 keymap * jotix keymaps
-rw-r--r--layouts/community/ortho_4x12/jotix/keymap.c137
-rw-r--r--layouts/community/ortho_4x12/jotix/readme.md10
-rw-r--r--layouts/community/ortho_4x4/jotix/keymap.c41
-rw-r--r--layouts/community/ortho_4x4/jotix/readme.md6
4 files changed, 194 insertions, 0 deletions
diff --git a/layouts/community/ortho_4x12/jotix/keymap.c b/layouts/community/ortho_4x12/jotix/keymap.c
new file mode 100644
index 000000000..2c622cb95
--- /dev/null
+++ b/layouts/community/ortho_4x12/jotix/keymap.c
@@ -0,0 +1,137 @@
1// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
2// this is the style you want to emulate.
3
4#include QMK_KEYBOARD_H
5
6extern keymap_config_t keymap_config;
7
8// Each layer gets a name for readability, which is then used in the keymap matrix below.
9// The underscores don't mean anything - you can have a layer called STUFF or any other name.
10// Layer names don't all need to be of the same length, obviously, and you can also skip them
11// entirely and just use numbers.
12
13#define _QWERTY 0
14#define _LOWER 1
15#define _RAISE 2
16#define _FUNCTION 3
17#define _ADJUST 4
18
19enum custom_keycodes {
20 BACKLIT = SAFE_RANGE
21};
22
23#define LOWER MO(_LOWER)
24#define RAISE MO(_RAISE)
25#define FUNCT LT(_FUNCTION, KC_TAB)
26
27const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28
29/* Qwerty
30 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
31 * | esc | Q | W | E | R | T | Y | U | I | O | P | bksp |
32 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
33 * | func | A | S | D | F | G | H | J | K | L | ; | del |
34 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
35 * | lshift | Z | X | C | V | B | N | M | , | . | / | enter |
36 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
37 * | lctrl | lgui | lalt | ralt | lower | space | space | raise | left | down | up | right |
38 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
39 */
40[_QWERTY] = LAYOUT_ortho_4x12 (
41 KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
42 FUNCT, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_DEL,
43 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
44 KC_LCTL, KC_LGUI, KC_LALT, KC_RALT, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
45),
46
47/* Lower
48 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
49 * | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | |
50 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
51 * | | vol- | mute | vol+ | | | | | | | | |
52 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
53 * | | prev | play | next | | | | CapsLk | | | | |
54 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
55 * | | | | | | | | | | | | |
56 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
57 */
58[_LOWER] = LAYOUT_ortho_4x12 (
59 _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______,
60 _______, KC_VOLD, KC_MUTE, KC_VOLU, _______, _______, _______, _______, _______, _______, _______, _______,
61 _______, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, _______, KC_CAPS, _______, _______, _______, _______,
62 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
63),
64
65/* Raise
66 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
67 * | | ! | @ | # | $ | % | ^ | & | * | ( | ) | |
68 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
69 * | | | | | | \ | ` | - | = | [ | ] | ' |
70 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
71 * | | | | | | | | ~ | _ | + | { | } | " |
72 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
73 * | | | | | | | | | home | pgdn | pgun | end |
74 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
75 */
76[_RAISE] = LAYOUT_ortho_4x12 (
77 _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______,
78 _______, _______, _______, _______, _______, KC_BSLS, KC_GRV, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_QUOT,
79 _______, _______, _______, _______, _______, KC_PIPE, KC_TILD, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_DQUO,
80 _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END
81),
82
83/*
84 * Function
85 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
86 * | | F1 | F2 | F3 | F4 | | | P7 | P8 | P9 | P- | |
87 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
88 * | | F5 | F6 | F7 | F8 | | | P4 | P5 | P6 | P+ | |
89 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
90 * | | F9 | F10 | F11 | F12 | | NumLck | P1 | P2 | P3 | P/ | Penter |
91 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
92 * | | | | | | | | | P0 | Pdot | P* | |
93 * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
94 */
95[_FUNCTION] = LAYOUT_ortho_4x12 (
96 _______, KC_F1, KC_F2, KC_F3, KC_F4, XXXXXXX, XXXXXXX, KC_P7, KC_P8, KC_P9, KC_PMNS, _______,
97 _______, KC_F5, KC_F6, KC_F7, KC_F8, XXXXXXX, XXXXXXX, KC_P4, KC_P5, KC_P6, KC_PPLS, _______,
98 _______, KC_F9, KC_F10, KC_F11, KC_F12, XXXXXXX, KC_NLCK, KC_P1, KC_P2, KC_P3, KC_PSLS, KC_PENT,
99 _______, _______, _______, _______, _______, _______, _______, _______, KC_P0, KC_PDOT, KC_PAST, XXXXXXX
100),
101
102/* Adjust */
103[_ADJUST] = LAYOUT_ortho_4x12 (
104 _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
105 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
106 _______, _______, _______, _______, _______, BACKLIT, _______, _______, _______, _______, _______, _______,
107 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
108),
109};
110
111uint32_t layer_state_set_user(uint32_t state) {
112 return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
113}
114
115void matrix_init_user(void) {
116}
117
118bool process_record_user(uint16_t keycode, keyrecord_t *record) {
119 switch (keycode) {
120
121 case BACKLIT:
122 if (record->event.pressed) {
123 register_code(KC_RSFT);
124 #ifdef BACKLIGHT_ENABLE
125 backlight_step();
126 #endif
127 } else {
128 unregister_code(KC_RSFT);
129 }
130 return false;
131 break;
132
133 default:
134 return true;
135
136 }
137}
diff --git a/layouts/community/ortho_4x12/jotix/readme.md b/layouts/community/ortho_4x12/jotix/readme.md
new file mode 100644
index 000000000..608944801
--- /dev/null
+++ b/layouts/community/ortho_4x12/jotix/readme.md
@@ -0,0 +1,10 @@
1# Jotix ortho 4x12 keymap
2
3![keymap](https://i.imgur.com/7hGJJPs.jpg)
4
5Tab is 'Func' on hold.
6
7Tested on:
8
9* Planck/rev4
10* Jotanck
diff --git a/layouts/community/ortho_4x4/jotix/keymap.c b/layouts/community/ortho_4x4/jotix/keymap.c
new file mode 100644
index 000000000..561084f8a
--- /dev/null
+++ b/layouts/community/ortho_4x4/jotix/keymap.c
@@ -0,0 +1,41 @@
1#include QMK_KEYBOARD_H
2
3extern keymap_config_t keymap_config;
4
5// Each layer gets a name for readability, which is then used in the keymap matrix below.
6// The underscores don't mean anything - you can have a layer called STUFF or any other name.
7// Layer names don't all need to be of the same length, obviously, and you can also skip them
8// entirely and just use numbers.
9
10#define _NUMPAD 0
11#define _LOWER 1
12#define LOWER LT(_LOWER, KC_PENT)
13
14const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
15
16/* Numpad
17 * +-------+-------+-------+-------+
18 * | 7 | 8 | 9 | - |
19 * +-------+-------+-------+-------+
20 * | 4 | 5 | 6 | + |
21 * +-------+-------+-------+-------+
22 * | 1 | 2 | 3 | / |
23 * +-------+-------+-------+-------+
24 * | | 0 | . | * |
25 * +-------+-------+-------+-------+
26 */
27[_NUMPAD] = LAYOUT_jotpad16 (
28 KC_P7, KC_P8, KC_P9, KC_PMNS,
29 KC_P4, KC_P5, KC_P6, KC_PPLS,
30 KC_P1, KC_P2, KC_P3, KC_PSLS,
31 LOWER, KC_P0, KC_PDOT,KC_PAST
32),
33
34/* Lower */
35[_LOWER] = LAYOUT_jotpad16 (
36 KC_NLCK,_______,_______,RESET ,
37 _______,_______,_______,_______,
38 _______,_______,_______,_______,
39 _______,_______,_______,_______
40),
41};
diff --git a/layouts/community/ortho_4x4/jotix/readme.md b/layouts/community/ortho_4x4/jotix/readme.md
new file mode 100644
index 000000000..0624f6215
--- /dev/null
+++ b/layouts/community/ortho_4x4/jotix/readme.md
@@ -0,0 +1,6 @@
1# Jotix ortho 4x4 keymap
2
3![keymap](https://i.imgur.com/e67yN7x.jpg)
4
5Enter is 'Lower' on hold.
6