-
Notifications
You must be signed in to change notification settings - Fork 1
/
keymap.c
executable file
·285 lines (247 loc) · 17.5 KB
/
keymap.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/* Copyright 2021 Glorious, LLC <[email protected]>
* Copyright 2021 Tiago Dias <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include QMK_KEYBOARD_H
#include "layers.h"
#include "rgb_matrix_map.h"
#define ARRAYSIZE(arr) (sizeof(arr)/sizeof(arr[0]))
// Functions
static void set_rgb_indicators(void);
// clang-format off
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | Esc | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | PrScr | | Mute |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | `~ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | BackSp | | Intl1 |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | Tab | Q | W | E | R | T | Y | U | I | O | P | [ | ] | \ | | Intl2 |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | Caps | A | S | D | F | G | H | J | K | L | ; | ' | Enter | | Intl3 |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+ +--------+
// | Shift | Z | X | C | V | B | N | M | , | . | / | Shift +--------+ Intl4 |
// +-----------------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+ Up +--------+
// +--------+--------+--------+--------------------------------------------------------------+--------+--------+--------+--------+--------+--------+
// | Ctrl | Alt | Super | Space | Alt | MO(1) | Ctrl | Left | Down | Right |
// +--------+--------+--------+--------------------------------------------------------------+--------+--------+--------+--------+--------+--------+
[_BASE] = LAYOUT(
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_MUTE,
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_INT1,
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_INT2,
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_INT3,
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_INT4,
KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT
),
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | Reset | F13 | F14 | F15 | F16 | F17 | F18 | F19 | F20 | F21 | F22 | F23 | F24 | Insert | | Sleep |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | *TG(1) | TG(2) | TG(3) | | | | 7 | 8 | 9 | / | | | | | Intl5 |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | 4 | 5 | 6 | * | Enter | | | | Intl6 |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | 1 | 2 | 3 | - | | | | Intl7 |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+ +--------+
// | | R_TOG | R_MOD | R_HUE | R_SAT | R_VAL | R_SPD | 0 | | . | + | +--------+ Intl8 |
// +-----------------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+ PgUp +--------+
// +--------+--------+--------+--------------------------------------------------------------+--------+--------+--------+--------+--------+--------+
// | | | | | | | | Home | PgDown | End |
// +--------+--------+--------+--------------------------------------------------------------+--------+--------+--------+--------+--------+--------+
[_FN1] = LAYOUT(
RESET, KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, KC_F21, KC_F22, KC_F23, KC_F24, KC_INS, KC_SLEP,
_______, _______, TG(2), TG(3), _______, _______, _______, KC_P7, KC_P8, KC_P9, KC_PSLS, _______, _______, _______, KC_INT5,
_______, _______, _______, _______, _______, _______, _______, KC_P4, KC_P5, KC_P6, KC_PAST, KC_PENT, _______, _______, KC_INT6,
_______, _______, _______, _______, _______, _______, _______, KC_P1, KC_P2, KC_P3, KC_PMNS, _______, _______, KC_INT7,
_______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, RGB_SPI, KC_P0, _______, KC_PDOT, KC_PPLS, _______, KC_PGUP, KC_INT8,
_______, _______, _______, _______, _______, XXXXXXX, _______, KC_HOME, KC_PGDN, KC_END
),
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | | | | | | | | | |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | | | | | | | | | |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | | | | | | | | | |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | | | | | | | | |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+ +--------+
// | | | | | | | | | | | | +--------+ |
// +-----------------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+ +--------+
// +--------+--------+--------+--------------------------------------------------------------+--------+--------+--------+--------+--------+--------+
// | | | | | | | | | | |
// +--------+--------+--------+--------------------------------------------------------------+--------+--------+--------+--------+--------+--------+
[_MO2] = LAYOUT(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
),
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | | | | | | | | | |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | | | | | | | | | |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | | | | | | | | | |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+ +--------+
// | | | | | | | | | | | | | | | |
// +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+ +--------+
// | | | | | | | | | | | | +--------+ |
// +-----------------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-----------------+ +--------+
// +--------+--------+--------+--------------------------------------------------------------+--------+--------+--------+--------+--------+--------+
// | | | | | | | | | | |
// +--------+--------+--------+--------------------------------------------------------------+--------+--------+--------+--------+--------+--------+
[_MO3] = LAYOUT(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
),
};
// clang-format on
#ifdef ENCODER_ENABLE
/**
* Encoder
* -------
*
* Base: Control volume
* FN1: Scroll
*/
bool encoder_update_user(uint8_t index, bool clockwise) {
switch (get_highest_layer(layer_state)) {
case _BASE:
clockwise ? tap_code(KC_VOLU) : tap_code(KC_VOLD); // Base: Volume
break;
case _FN1:
clockwise ? tap_code(KC_WH_U) : tap_code(KC_WH_D); // Fn: Scroll
break;
default:
break;
}
return true;
}
#endif // ENCODER_ENABLED
#ifdef RGB_MATRIX_ENABLE
/**
* Indicator Keys
* --------------
*
* FN+F1: Layer _FN1 is on
* F2: Layer _MO2 is on
* F3: Layer _MO3 is on
* Caps+ESC: Caps Lock is on
*/
void set_rgb_indicators() {
if (host_keyboard_led_state().caps_lock) {
rgb_matrix_set_color(LED_CAPS, _INDICATOR_COLOR);
rgb_matrix_set_color(LED_ESC, _INDICATOR_COLOR);
}
if (IS_LAYER_ON(_FN1)) {
rgb_matrix_set_color(LED_FN, _INDICATOR_COLOR);
rgb_matrix_set_color(LED_F1, _INDICATOR_COLOR);
// highlight numpad keys
//for (int i = 0; i < ARRAYSIZE(LED_LIST_NUMPAD); i++) {
// rgb_matrix_set_color(LED_LIST_NUMPAD[i], RGB_ORANGE);
//}
}
if (IS_LAYER_ON(_MO2)) {
rgb_matrix_set_color(LED_F2, _INDICATOR_COLOR);
}
if (IS_LAYER_ON(_MO3)) {
rgb_matrix_set_color(LED_F3, _INDICATOR_COLOR);
}
}
/**
* Called when a keycode is being processed.
* This function can be used to override behaviour of certain keycodes.
*/
bool pressed_1 = false;
bool pressed_fn = false;
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case KC_1:
// Unlock Fn if KV_1 is pressed while locked
if (IS_LAYER_ON(_FN1)) {
if (!record->event.pressed) {
pressed_fn
? pressed_1 = true
: layer_off(_FN1);
}
return false;
}
break;
case MO(1):
// Lock Fn if KC_1 is pressed at the same time
pressed_fn = record->event.pressed;
if (!record->event.pressed && pressed_1) {
return false;
} else {
pressed_1 = false;
}
break;
case RGB_TOG:
// When toggling matrix, keep it on but disable the LEDs through flags.
// This allows to keep using some of them as indicators.
if (record->event.pressed) {
if (rgb_matrix_is_enabled()) {
switch (rgb_matrix_get_flags()) {
case LED_FLAG_NONE:
rgb_matrix_set_flags(LED_FLAG_ALL);
rgb_matrix_disable_noeeprom();
break;
case LED_FLAG_ALL:
rgb_matrix_set_flags(LED_FLAG_NONE);
rgb_matrix_disable_noeeprom();
break;
}
}
}
break;
case RGB_MOD:
case RGB_RMOD:
case RGB_HUI:
case RGB_HUD:
case RGB_SAI:
case RGB_SAD:
case RGB_VAI:
case RGB_VAD:
case RGB_SPI:
case RGB_SPD:
// Ignore RGB setting keys if RGB is off (this is needed as RGB is never truly off,
// just disabled through flags)
if (record->event.pressed) {
if (rgb_matrix_get_flags() != LED_FLAG_ALL) {
return false;
}
}
break;
}
return true;
}
/**
* Called after RBG effect render.
*/
void rgb_matrix_indicators_user() {
if (rgb_matrix_get_flags() == LED_FLAG_NONE) {
rgb_matrix_set_color_all(0x0, 0x0, 0x0);
}
set_rgb_indicators();
}
#endif // RGB_MATRIX_ENABLE