qmk/keymap.c

165 lines
7 KiB
C
Raw Normal View History

2022-10-10 16:58:32 +02:00
/* Copyright 2022 Christoph Cullmann
2022-10-01 11:03:31 +02:00
*
* 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
//
// improve home row modifiers via achordion
//
#include "achordion.h"
bool process_record_user(uint16_t keycode, keyrecord_t* record)
{
if (!process_achordion(keycode, record)) {
return false;
}
return true;
}
void matrix_scan_user(void)
{
achordion_task();
}
2022-10-18 00:12:56 +02:00
static bool planck_bottom_row(keypos_t pos)
{
return pos.row % (MATRIX_ROWS / 2) == 3;
}
// works only for rows 0-2 or 4-6
static bool planck_on_left_hand(keypos_t pos)
{
// planck is like a split keyboard, beside for the last row
return pos.row < MATRIX_ROWS / 2;
}
bool achordion_chord(uint16_t tap_hold_keycode,
keyrecord_t* tap_hold_record,
uint16_t other_keycode,
keyrecord_t* other_record)
{
2022-10-18 00:12:56 +02:00
// last row is special for the planck, just allow there everything
if (planck_bottom_row(tap_hold_record->event.key)) {
return true;
}
if (planck_bottom_row(other_record->event.key)) {
return true;
}
2022-10-18 00:12:56 +02:00
// now both keys are in rows 0-2 or 4-6, there we can check the left hand with the simple helper
return planck_on_left_hand(tap_hold_record->event.key) != planck_on_left_hand(other_record->event.key);
}
2022-10-18 21:06:28 +02:00
// our layers, used as index in layers and rgb lights
enum planck_layers {
_QWERTY,
2022-10-19 09:58:27 +02:00
_SYM,
2022-10-18 21:06:28 +02:00
_NUM,
2022-10-18 23:58:17 +02:00
_FN,
2022-10-19 09:58:27 +02:00
_NAV
2022-10-18 21:06:28 +02:00
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_QWERTY] = LAYOUT_planck_grid(
KC_Q, KC_W, KC_E, KC_R, KC_T, XXXXXXX, XXXXXXX, KC_Y, KC_U, KC_I, KC_O, KC_P,
LGUI_T(KC_A), LALT_T(KC_S), LCTL_T(KC_D), LSFT_T(KC_F), KC_G, XXXXXXX, XXXXXXX, KC_H, RSFT_T(KC_J), RCTL_T(KC_K), LALT_T(KC_L), RGUI_T(KC_QUOT),
KC_Z, RALT_T(KC_X), KC_C, KC_V, KC_B, XXXXXXX, XXXXXXX, KC_N, KC_M, KC_COMM, RALT_T(KC_DOT), KC_SLSH,
2022-10-19 09:58:27 +02:00
XXXXXXX, XXXXXXX, XXXXXXX, LT(_SYM, KC_TAB), LT(_NUM, KC_SPC), XXXXXXX, XXXXXXX, LT(_FN, KC_ENT), LT(_NAV, KC_BSPC), XXXXXXX, XXXXXXX, XXXXXXX
2022-10-18 21:06:28 +02:00
),
2022-10-19 09:58:27 +02:00
[_SYM] = LAYOUT_planck_grid(
KC_ESC, C(KC_X), C(KC_C), C(KC_V), XXXXXXX, XXXXXXX, XXXXXXX, KC_LCBR, KC_AMPR, KC_ASTR, KC_LPRN, KC_RCBR,
KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, XXXXXXX, XXXXXXX, XXXXXXX, KC_PLUS, KC_DLR, KC_PERC, KC_CIRC, KC_COLN,
XXXXXXX, KC_RALT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_PIPE, KC_EXLM, KC_AT, KC_HASH, KC_TILD,
2022-10-19 09:58:27 +02:00
XXXXXXX, XXXXXXX, XXXXXXX, KC_TAB, KC_SPC, XXXXXXX, XXXXXXX, KC_UNDS, KC_RPRN, XXXXXXX, XXXXXXX, XXXXXXX
2022-10-18 21:06:28 +02:00
),
2022-10-19 09:58:27 +02:00
[_NUM] = LAYOUT_planck_grid(
KC_ESC, C(KC_X), C(KC_C), C(KC_V), XXXXXXX, XXXXXXX, XXXXXXX, KC_LBRC, KC_7, KC_8, KC_9, KC_RBRC,
KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, XXXXXXX, XXXXXXX, XXXXXXX, KC_EQL, KC_4, KC_5, KC_6, KC_SCLN,
XXXXXXX, KC_RALT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_BSLS, KC_1, KC_2, KC_3, KC_GRV,
2022-10-19 09:58:27 +02:00
XXXXXXX, XXXXXXX, XXXXXXX, KC_TAB, KC_SPC, XXXXXXX, XXXXXXX, KC_MINS, KC_0, XXXXXXX, XXXXXXX, XXXXXXX
2022-10-18 21:06:28 +02:00
),
[_FN] = LAYOUT_planck_grid(
2022-10-19 09:58:27 +02:00
KC_F12, KC_F7, KC_F8, KC_F9, KC_PSCR, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, QK_BOOT,
KC_F11, KC_F4, KC_F5, KC_F6, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_RSFT, KC_RCTL, KC_LALT, KC_RGUI,
KC_F10, KC_F1, KC_F2, KC_F3, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_RALT, XXXXXXX,
2022-10-18 21:25:45 +02:00
XXXXXXX, XXXXXXX, XXXXXXX, KC_TAB, KC_SPC, XXXXXXX, XXXXXXX, KC_ENT, KC_BSPC, XXXXXXX, XXXXXXX, XXXXXXX
2022-10-18 23:59:28 +02:00
),
2022-10-18 21:06:28 +02:00
2022-10-19 09:58:27 +02:00
[_NAV] = LAYOUT_planck_grid(
KC_PGUP, KC_HOME, KC_UP, KC_END, KC_PGUP, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, QK_BOOT,
KC_PGDN, KC_LEFT, KC_DOWN, KC_RGHT, KC_PGDN, XXXXXXX, XXXXXXX, XXXXXXX, KC_RSFT, KC_RCTL, KC_LALT, KC_RGUI,
XXXXXXX, C(KC_X), C(KC_C), C(KC_V), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_RALT, XXXXXXX,
2022-10-18 23:58:17 +02:00
XXXXXXX, XXXXXXX, XXXXXXX, KC_TAB, KC_SPC, XXXXXXX, XXXXXXX, KC_ENT, KC_BSPC, XXXXXXX, XXXXXXX, XXXXXXX
2022-10-18 23:59:28 +02:00
)
2022-10-18 23:58:17 +02:00
2022-10-18 21:06:28 +02:00
};
2022-10-01 16:34:28 +02:00
/* plwnck rev6 RGB layout:
* ----------------------------------
* | 6 5 4 3 |
* | 0 |
* | 7 8 1 2 |
* ----------------------------------
*/
2022-10-01 18:09:51 +02:00
const rgblight_segment_t PROGMEM qwerty_layer[] = RGBLIGHT_LAYER_SEGMENTS(
{1, 8, HSV_WHITE}
2022-10-01 16:34:28 +02:00
);
2022-10-19 09:58:27 +02:00
const rgblight_segment_t PROGMEM sym_layer[] = RGBLIGHT_LAYER_SEGMENTS(
{1, 8, HSV_BLUE}
2022-10-01 16:34:28 +02:00
);
2022-10-19 09:58:27 +02:00
const rgblight_segment_t PROGMEM num_layer[] = RGBLIGHT_LAYER_SEGMENTS(
{1, 8, HSV_GREEN}
2022-10-01 16:34:28 +02:00
);
2022-10-01 18:09:51 +02:00
const rgblight_segment_t PROGMEM fn_layer[] = RGBLIGHT_LAYER_SEGMENTS(
{1, 8, HSV_RED}
2022-10-01 16:34:28 +02:00
);
2022-10-19 09:58:27 +02:00
const rgblight_segment_t PROGMEM nav_layer[] = RGBLIGHT_LAYER_SEGMENTS(
{1, 8, HSV_WHITE}
2022-10-18 23:58:17 +02:00
);
2022-10-01 16:34:28 +02:00
const rgblight_segment_t * const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST(
2022-10-18 21:06:28 +02:00
[_QWERTY] = qwerty_layer,
2022-10-19 09:58:27 +02:00
[_SYM] = sym_layer,
2022-10-18 21:06:28 +02:00
[_NUM] = num_layer,
2022-10-18 23:58:17 +02:00
[_FN] = fn_layer,
2022-10-19 09:58:27 +02:00
[_NAV] = nav_layer
2022-10-01 16:34:28 +02:00
);
2022-10-18 21:06:28 +02:00
void keyboard_post_init_user(void) {
2022-10-01 16:34:28 +02:00
// Enable the LED layers
rgblight_layers = my_rgb_layers;
}
layer_state_t layer_state_set_user(layer_state_t state)
{
2022-10-19 09:58:27 +02:00
rgblight_set_layer_state(_SYM, layer_state_cmp(state, _SYM));
2022-10-18 21:06:28 +02:00
rgblight_set_layer_state(_NUM, layer_state_cmp(state, _NUM));
rgblight_set_layer_state(_FN, layer_state_cmp(state, _FN));
2022-10-19 09:58:27 +02:00
rgblight_set_layer_state(_NAV, layer_state_cmp(state, _NAV));
2022-10-01 16:34:28 +02:00
return state;
}