Removed retro tapping
Added caps lock status Improved key layout
This commit is contained in:
@@ -17,4 +17,4 @@
|
|||||||
{ R30, R31, R32, KC_NO, KC_NO, KC_NO } \
|
{ R30, R31, R32, KC_NO, KC_NO, KC_NO } \
|
||||||
}
|
}
|
||||||
|
|
||||||
#define FW_VERSION "2.23"
|
#define FW_VERSION "2.24"
|
||||||
|
|||||||
@@ -40,14 +40,11 @@
|
|||||||
#define DEBOUNCE 2
|
#define DEBOUNCE 2
|
||||||
|
|
||||||
/* Set the maximum time allowed between taps */
|
/* Set the maximum time allowed between taps */
|
||||||
#define TAPPING_TERM 250
|
#define TAPPING_TERM 200
|
||||||
|
|
||||||
/* Configure leader key */
|
/* Configure leader key */
|
||||||
#define LEADER_TIMEOUT 300
|
#define LEADER_TIMEOUT 200
|
||||||
#define LEADER_PER_KEY_TIMING
|
#define LEADER_PER_KEY_TIMING
|
||||||
|
|
||||||
/* Allow quick tapping not to trigger modifier hold */
|
/* Allow quick tapping not to trigger modifier hold */
|
||||||
#define IGNORE_MOD_TAP_INTERRUPT_PER_KEY
|
#define IGNORE_MOD_TAP_INTERRUPT_PER_KEY
|
||||||
|
|
||||||
/* Releasing key without pressing another will send the original key */
|
|
||||||
#define RETRO_TAPPING
|
|
||||||
|
|||||||
@@ -16,31 +16,31 @@ enum {
|
|||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
/*
|
/*
|
||||||
* Qwerty
|
* Layer0 - (Qwerty)
|
||||||
* Enter = Enter when tapped and Alt + Ctrl when held
|
* EntrCA = Enter when tapped and Ctrl + Alt when held
|
||||||
* Space = Space when tapped and Super when held
|
* SpcSpr = Space when tapped and Super when held
|
||||||
* Layer2 = Leader key when tapped and layer 2 when held
|
* LKLyr2 = Leader key when tapped and layer 2 when held
|
||||||
* CtlSpc = Space when tapped and Ctrl when held
|
* EscCtl = Escape when tapped and Ctrl when held
|
||||||
* AltBsp = Backspace when tapped and Alt when held
|
* BspAlt = Backspace when tapped and Alt when held
|
||||||
* ,-----------------------------------------. ,-----------------------------------------.
|
* ,-----------------------------------------. ,-----------------------------------------.
|
||||||
* | Esc | Q | W | E | R | T | | Y | U | I | O | P | |
|
* | ESC | Q | W | E | R | T | | Y | U | I | O | P | BSPC |
|
||||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
* | Tab | A | S | D | F | G | | H | J | K | L | ; | ' |
|
* | Tab | A | S | D | F | G | | H | J | K | L | ; | ' |
|
||||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
* |Shift | Z | X | C | V | B | | N | M | , | . | / |Shift |
|
* |Shift | Z | X | C | V | B | | N | M | , | . | / |Shift |
|
||||||
* `-----------------------------------------|------. ,------|-----------------------------------------'
|
* `-----------------------------------------|------. ,------|-----------------------------------------'
|
||||||
* |CtlSpc|Enter |Layer1| |Layer2|Space |AltBsp|
|
* |EscCtl|EntrCA|Layer1| |LKLyr2|SpcSpr|BspAlt|
|
||||||
* `--------------------' `--------------------'
|
* `--------------------' `--------------------'
|
||||||
*/
|
*/
|
||||||
[_QWERTY] = LAYOUT( \
|
[_QWERTY] = LAYOUT( \
|
||||||
KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_NO, \
|
KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, \
|
||||||
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \
|
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \
|
||||||
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_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, \
|
||||||
LCTL_T(KC_SPC), LCA_T(KC_ENT), MO(_L1), TD(LT_LEAD), LGUI_T(KC_SPC), RALT_T(KC_BSPC) \
|
LCTL_T(KC_ESC), LCA_T(KC_ENT), MO(_L1), TD(LT_LEAD), LGUI_T(KC_SPC), RALT_T(KC_BSPC) \
|
||||||
),
|
),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Layer1
|
* Layer1 - (Symbols | Numpad)
|
||||||
* ,-----------------------------------------. ,-----------------------------------------.
|
* ,-----------------------------------------. ,-----------------------------------------.
|
||||||
* | ` | ! | @ | # | { | } | | = | 7 | 8 | 9 | / | - |
|
* | ` | ! | @ | # | { | } | | = | 7 | 8 | 9 | / | - |
|
||||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
@@ -48,7 +48,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
* | > | \ | | | _ | [ | ] | | , | 1 | 2 | 3 | . | < |
|
* | > | \ | | | _ | [ | ] | | , | 1 | 2 | 3 | . | < |
|
||||||
* `-----------------------------------------|------. ,------|-----------------------------------------'
|
* `-----------------------------------------|------. ,------|-----------------------------------------'
|
||||||
* | LCtl |Enter |L1Held| |CtlSpc| 0 | RAlt |
|
* |CtlEsc|Enter |L1Held| |CtlSpc| 0 |AltBsp|
|
||||||
* `--------------------' `--------------------'
|
* `--------------------' `--------------------'
|
||||||
*/
|
*/
|
||||||
[_L1] = LAYOUT( \
|
[_L1] = LAYOUT( \
|
||||||
@@ -59,7 +59,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
),
|
),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Layer2
|
* Layer2 - (F-Keys | Navigation)
|
||||||
* AS = Alt + Space
|
* AS = Alt + Space
|
||||||
* CE = Ctrl + Enter
|
* CE = Ctrl + Enter
|
||||||
* SS = Super + Space
|
* SS = Super + Space
|
||||||
@@ -82,7 +82,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
),
|
),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Layer3 (Gaming)
|
* Layer3 - (Gaming)
|
||||||
* ,-----------------------------------------. ,-----------------------------------------.
|
* ,-----------------------------------------. ,-----------------------------------------.
|
||||||
* | Esc | V | Q | W | E | R | | | | Up | | | |
|
* | Esc | V | Q | W | E | R | | | | Up | | | |
|
||||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
@@ -101,7 +101,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
),
|
),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Layer4 (RetroArch)
|
* Layer4 - (RetroArch)
|
||||||
* ,-----------------------------------------. ,-----------------------------------------.
|
* ,-----------------------------------------. ,-----------------------------------------.
|
||||||
* | F1 | | | Up | | | | | A | S | Q | 1 | |
|
* | F1 | | | Up | | | | | A | S | Q | 1 | |
|
||||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||||
@@ -239,14 +239,29 @@ bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) {
|
|||||||
switch (keycode) {
|
switch (keycode) {
|
||||||
case LGUI_T(KC_SPC):
|
case LGUI_T(KC_SPC):
|
||||||
return true;
|
return true;
|
||||||
|
case RALT_T(KC_BSPC):
|
||||||
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool led_update_user(led_t led_state) {
|
||||||
|
static uint8_t caps_state = 0;
|
||||||
|
static uint8_t msg[RAW_EPSIZE] = {0};
|
||||||
|
|
||||||
|
if (caps_state != led_state.caps_lock) {
|
||||||
|
sprintf((char *)msg, "C:%u", led_state.caps_lock);
|
||||||
|
raw_hid_send(msg, RAW_EPSIZE);
|
||||||
|
caps_state = led_state.caps_lock;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t layer_state_set_user(uint32_t state) {
|
uint32_t layer_state_set_user(uint32_t state) {
|
||||||
uint8_t layer = biton32(state);
|
uint8_t layer = biton32(state);
|
||||||
uint8_t msg[RAW_EPSIZE] = {0};
|
static uint8_t msg[RAW_EPSIZE] = {0};
|
||||||
|
|
||||||
sprintf((char *)msg, "L:%u", layer);
|
sprintf((char *)msg, "L:%u", layer);
|
||||||
raw_hid_send(msg, RAW_EPSIZE);
|
raw_hid_send(msg, RAW_EPSIZE);
|
||||||
@@ -255,19 +270,22 @@ uint32_t layer_state_set_user(uint32_t state) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void dynamic_macro_record_start_user(void) {
|
void dynamic_macro_record_start_user(void) {
|
||||||
uint8_t msg[RAW_EPSIZE] = {0};
|
static uint8_t msg[RAW_EPSIZE] = {0};
|
||||||
|
|
||||||
sprintf((char *)msg, "M:1");
|
sprintf((char *)msg, "M:1");
|
||||||
raw_hid_send(msg, RAW_EPSIZE);
|
raw_hid_send(msg, RAW_EPSIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void dynamic_macro_play_user(int8_t direction) {
|
void dynamic_macro_play_user(int8_t direction) {
|
||||||
uint8_t msg[RAW_EPSIZE] = {0};
|
static uint8_t msg[RAW_EPSIZE] = {0};
|
||||||
|
|
||||||
sprintf((char *)msg, "M:3");
|
sprintf((char *)msg, "M:3");
|
||||||
raw_hid_send(msg, RAW_EPSIZE);
|
raw_hid_send(msg, RAW_EPSIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void dynamic_macro_record_end_user(int8_t direction) {
|
void dynamic_macro_record_end_user(int8_t direction) {
|
||||||
uint8_t msg[RAW_EPSIZE] = {0};
|
static uint8_t msg[RAW_EPSIZE] = {0};
|
||||||
|
|
||||||
sprintf((char *)msg, "M:5");
|
sprintf((char *)msg, "M:5");
|
||||||
raw_hid_send(msg, RAW_EPSIZE);
|
raw_hid_send(msg, RAW_EPSIZE);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user