#include QMK_KEYBOARD_H
enum dichotomy_layers {
_BS,
_SF,
_NM,
_NS,
_MS
};
#define LONGPRESS_COUNT 4
enum dichotomy_keycodes
{
CK_1G = SAFE_RANGE,
CK_BSPE,
CK_QE,
CK_TE, NS_HYPH,
NS_EQU,
NUMKEY,
SFTKEY,
MOUKEY,
MS_BTN1,
MS_BTN2,
MS_BTN3
};
#define CUSTOM_LONGPRESS 150
#define CUSTOM_TOGGLE_TIME 300
#define RED_BRIGHTNESS 3
#define GREEN_BRIGHTNESS 2
#define BLUE_BRIGHTNESS 2
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_BS] = LAYOUT(
CK_TE, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
NUMKEY, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, CK_QE,
SFTKEY, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, MOUKEY,
KC_LCTL, KC_LALT, KC_LGUI, KC_RGUI, KC_RALT, KC_RCTL,
MS_BTN3, KC_LBRC, KC_LPRN, KC_SPC, KC_SPC, KC_RPRN, KC_RBRC, MS_BTN3
),
[_SF] = LAYOUT(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, NS_HYPH, KC_UNDS, _______, _______,
_______, _______, _______, _______, _______, _______,
_______, _______, KC_LABK, _______, _______, KC_RABK, _______, _______
),
[_NM] = LAYOUT(
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______,
_______, CK_1G, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, CK_BSPE,
_______, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, _______,
_______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______
),
[_NS] = LAYOUT(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PLUS, NS_EQU, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______
),
[_MS] = LAYOUT(
_______, _______, _______, _______, _______, _______, KC_VOLU, KC_HOME, KC_PGUP, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, MS_BTN1, MS_BTN2, _______, _______, _______,
_______, _______, _______, _______, _______, _______, KC_VOLD, KC_END, KC_PGDN, _______, _______, _______,
_______, _______, _______, _______, KC_UP, _______,
_______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______
)
};
static uint16_t special_timers[LONGPRESS_COUNT] = {0xFFFF,0xFFFF,0xFFFF,0xFFFF};
static bool special_key_states[LONGPRESS_COUNT] = {0,0,0,0};
static bool special_key_pressed[LONGPRESS_COUNT] = {0,0,0,0};
static uint16_t shift_timer;
static uint16_t num_timer;
static uint16_t mouse_timer;
static uint8_t red_timer;
static uint8_t green_timer;
static uint8_t blue_timer;
static bool shift_singular_key = false;
static bool number_singular_key = false;
static bool mouse_singular_key = false;
static bool capsLED = false;
static bool shiftLED = false;
static bool numLED = false;
static bool mouseLED = false;
static bool shift_held = false;
static bool shift_suspended = false;
report_mouse_t currentReport = {};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
bool returnVal = true;
switch (keycode) {
case NUMKEY:
if (record->event.pressed) {
num_timer = timer_read();
number_singular_key = true;
layer_invert(_NM);
numLED = !numLED;
} else {
if (timer_elapsed(num_timer) < CUSTOM_TOGGLE_TIME && number_singular_key) {
} else {
layer_invert(_NM);
numLED = !numLED;
}
}
update_tri_layer(_NM, _SF, _NS);
returnVal = false;
break;
case SFTKEY:
if (record->event.pressed) {
shift_held = true;
shiftLED = true;
shift_suspended = false;
shift_timer = timer_read();
shift_singular_key = true;
layer_on(_SF);
register_code(KC_LSFT);
} else {
shift_held = false;
shiftLED = false;
if (timer_elapsed(shift_timer) < CUSTOM_TOGGLE_TIME && shift_singular_key) {
SEND_STRING(SS_TAP(X_CAPSLOCK));
capsLED = !capsLED;
}
layer_off(_SF);
unregister_code(KC_LSFT);
}
update_tri_layer(_NM, _SF, _NS);
returnVal = false;
break;
case MOUKEY:
if (record->event.pressed) {
mouse_timer = timer_read();
mouse_singular_key = true;
layer_invert(_MS);
mouseLED = !mouseLED;
} else {
if (timer_elapsed(mouse_timer) < CUSTOM_TOGGLE_TIME && mouse_singular_key){
} else {
layer_invert(_MS);
mouseLED = !mouseLED;
}
}
returnVal = false;
break;
case CK_1G:
if (shift_held && shift_suspended){
register_code(KC_LSFT);
shift_suspended = false;
}
if (record->event.pressed) {
special_timers[CK_1G-SAFE_RANGE] = timer_read();
special_key_pressed[CK_1G-SAFE_RANGE] = 1;
} else {
if (special_key_states[CK_1G-SAFE_RANGE]){
special_key_states[CK_1G-SAFE_RANGE] = 0;
unregister_code(KC_GRAVE);
} else {
if (special_key_pressed[CK_1G-SAFE_RANGE]){
SEND_STRING(SS_TAP(X_1));
special_key_pressed[CK_1G-SAFE_RANGE] = 0;
} else {
}
}
}
returnVal = false;
break;
case CK_BSPE:
if (shift_held && shift_suspended){
register_code(KC_LSFT);
shift_suspended = false;
}
if (record->event.pressed) {
special_timers[CK_BSPE-SAFE_RANGE] = timer_read();
special_key_pressed[CK_BSPE-SAFE_RANGE] = 1;
} else {
if (special_key_states[CK_BSPE-SAFE_RANGE]){
special_key_states[CK_BSPE-SAFE_RANGE] = 0;
unregister_code(KC_ENTER);
} else {
if (special_key_pressed[CK_BSPE-SAFE_RANGE]){
SEND_STRING(SS_TAP(X_BSLASH));
special_key_pressed[CK_BSPE-SAFE_RANGE] = 0;
} else {
}
}
}
returnVal = false;
break;
case CK_QE:
if (shift_held && shift_suspended){
register_code(KC_LSFT);
shift_suspended = false;
}
if (record->event.pressed) {
special_timers[CK_QE-SAFE_RANGE] = timer_read();
special_key_pressed[CK_QE-SAFE_RANGE] = 1;
} else {
if (special_key_states[CK_QE-SAFE_RANGE]){
special_key_states[CK_QE-SAFE_RANGE] = 0;
unregister_code(KC_ENTER);
} else {
if (special_key_pressed[CK_QE-SAFE_RANGE]){
SEND_STRING(SS_TAP(X_QUOTE));
special_key_pressed[CK_QE-SAFE_RANGE] = 0;
} else {
}
}
}
returnVal = false;
break;
case CK_TE:
if (shift_held && shift_suspended){
register_code(KC_LSFT);
shift_suspended = false;
}
if (record->event.pressed) {
special_timers[CK_TE-SAFE_RANGE] = timer_read();
special_key_pressed[CK_TE-SAFE_RANGE] = 1;
} else {
if (special_key_states[CK_TE-SAFE_RANGE]){
special_key_states[CK_TE-SAFE_RANGE] = 0;
unregister_code(KC_ESCAPE);
} else {
if (special_key_pressed[CK_TE-SAFE_RANGE]){
SEND_STRING(SS_TAP(X_TAB));
special_key_pressed[CK_TE-SAFE_RANGE] = 0;
} else {
}
}
}
returnVal = false;
break;
case NS_HYPH:
if (record->event.pressed) {
shift_suspended = true;
unregister_code(KC_LSFT);
register_code(KC_MINS);
} else {
unregister_code(KC_MINS);
if (shift_held && shift_suspended){
register_code(KC_LSFT);
shift_suspended = false;
}
}
returnVal = false;
break;
case NS_EQU:
if (record->event.pressed) {
shift_suspended = true;
unregister_code(KC_LSFT);
register_code(KC_EQUAL);
} else {
unregister_code(KC_EQUAL);
if (shift_held && shift_suspended){
register_code(KC_LSFT);
shift_suspended = false;
}
}
returnVal = false;
break;
case MS_BTN1:
currentReport = pointing_device_get_report();
if (record->event.pressed) {
if (shift_held && shift_suspended){
register_code(KC_LSFT);
shift_suspended = false;
}
currentReport.buttons |= MOUSE_BTN1; } else {
currentReport.buttons &= ~MOUSE_BTN1;
}
pointing_device_set_report(currentReport);
returnVal = false;
break;
case MS_BTN2:
currentReport = pointing_device_get_report();
if (record->event.pressed) {
if (shift_held && shift_suspended){
register_code(KC_LSFT);
shift_suspended = false;
}
currentReport.buttons |= MOUSE_BTN2; } else {
currentReport.buttons &= ~MOUSE_BTN2;
}
pointing_device_set_report(currentReport);
returnVal = false;
break;
case MS_BTN3:
currentReport = pointing_device_get_report();
if (record->event.pressed) {
if (shift_held && shift_suspended){
register_code(KC_LSFT);
shift_suspended = false;
}
currentReport.buttons |= MOUSE_BTN3; } else {
currentReport.buttons &= ~MOUSE_BTN3;
}
pointing_device_set_report(currentReport);
returnVal = false;
break;
default:
if (shift_held){
register_code(KC_LSFT);
}
break;
}
switch (keycode){
case KC_BSPC:
case KC_NO:
case NUMKEY:
case SFTKEY:
case MOUKEY:
break;
default:
shift_singular_key = false;
number_singular_key = false;
mouse_singular_key = false;
break;
}
switch (keycode){
case KC_BSPC:
case KC_NO:
case NUMKEY:
case SFTKEY:
case MOUKEY:
case MOUSE_BTN1:
case MOUSE_BTN2:
case MOUSE_BTN3:
case KC_LCTL:
case KC_LALT:
case KC_LGUI:
case KC_RCTL:
case KC_RALT:
case KC_RGUI:
case CK_1G:
case CK_BSPE:
case CK_QE:
case CK_TE:
break;
default:
if (record->event.pressed) {
for (uint8_t i = 0; i<LONGPRESS_COUNT; i++){
if ((!special_key_states[i]) && special_key_pressed[i]){
switch (i + SAFE_RANGE){
case CK_1G:
SEND_STRING(SS_TAP(X_1));
break;
case CK_BSPE:
SEND_STRING(SS_TAP(X_BSLASH));
break;
case CK_QE:
SEND_STRING(SS_TAP(X_QUOTE));
break;
case CK_TE:
SEND_STRING(SS_TAP(X_TAB));
break;
}
special_key_pressed[i] = 0;
}
}
} else {
}
break;
}
return returnVal;
};
void matrix_scan_user(void) {
for (uint8_t i = 0; i<LONGPRESS_COUNT; i++){
if ((timer_elapsed(special_timers[i]) >= CUSTOM_LONGPRESS) && (!special_key_states[i]) && special_key_pressed[i]){
switch (i + SAFE_RANGE){
case CK_1G:
register_code(KC_GRAVE);
break;
case CK_BSPE:
register_code(KC_ENTER);
break;
case CK_QE:
register_code(KC_ENTER);
break;
case CK_TE:
register_code(KC_ESCAPE);
break;
}
special_key_pressed[i] = 0;
special_key_states[i] = 1;
}
}
if (shiftLED || capsLED){
red_timer++;
if (red_timer < RED_BRIGHTNESS){
red_led_on();
} else {
red_timer = 0;
red_led_off();
}
} else {
red_timer = 0;
red_led_off();
}
if (numLED){
green_timer++;
if (green_timer < GREEN_BRIGHTNESS){
grn_led_on();
} else {
green_timer = 0;
grn_led_off();
}
} else {
green_timer = 0;
grn_led_off();
}
if (mouseLED){
blue_timer++;
if (blue_timer < BLUE_BRIGHTNESS){
blu_led_on();
} else {
blue_timer = 0;
blu_led_off();
}
} else {
blue_timer = 0;
blu_led_off();
}
};