Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dhertz keychron map v0 #16571

Merged
merged 6 commits into from
Mar 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion keyboards/keychron/q2/rev_0113/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
#define ENCODERS_PAD_B { B5 }

/* Specifies the number of pulses the encoder registers between each detent */
#define ENCODER_RESOLUTION 2
#define ENCODER_RESOLUTION 4
drashna marked this conversation as resolved.
Show resolved Hide resolved
94 changes: 94 additions & 0 deletions keyboards/keychron/q2/rev_0113/keymaps/dhertz/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
// Copyright 2022 Dan Hertz (@dhertz)
// SPDX-License-Identifier: GPL-3.0

#include QMK_KEYBOARD_H
Dhertz marked this conversation as resolved.
Show resolved Hide resolved
#include "dhertz.h"

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* Layer 0: Default Layer
* ,---------------------------------------------------------------.
* |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| Backsp|( )|
* |---------------------------------------------------------------|
* |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]|Enter|Del|
* |------------------------------------------------------` |---|
* |SrCtl | A| S| D| F| G| H| J| K| L| ;| '| \| |Hom|
* |---------------------------------------------------------------|
* |Shif| #| Z| X| C| V| B| N| M| ,| .| /|Shift |Up | |
* |---------------------------------------------------------------|
* |NcCtl| Alt| CTab| LyrSpc |CGv|Alt|CSL|Lef|Dow|Rig|
* `---------------------------------------------------------------'
*/
[0] = LAYOUT_iso_68(
KC_ESC, 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_MUTE,
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_DEL,
SRCH_CTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT, KC_HOME,
KC_LSFT, HSH_TLD, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
NC_CTL, KC_LALT, CMD_TAB_CMD, LYR_SPC, CMD_GRV_CMD, KC_RALT, CMD_SFT_ALT_A, KC_LEFT, KC_DOWN, KC_RIGHT
),
/* Layer 1: Special
* ,---------------------------------------------------------------.
* | §| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| |( )|
* |---------------------------------------------------------------|
* | | | | | | | | | | | | | | | |
* |------------------------------------------------------` |---|
* | | | | | | | | | |CSL| | | `| | |
* |---------------------------------------------------------------|
* | | `| | |CAC| | | | | | | | |PgU| |
* |---------------------------------------------------------------|
* | | | | | | | |Hom|PgD|End|
* `---------------------------------------------------------------'
*/
[1] = LAYOUT_iso_68(
KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F10, KC_F11, KC_TRNS, CMD_SFT_A,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, CMD_SFT_L, KC_TRNS, KC_TRNS, KC_NUBS, KC_TRNS, KC_END,
KC_TRNS, KC_NUBS, KC_TRNS, KC_TRNS, CMD_ALT_C, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PGUP,
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_HOME, KC_PGDOWN, KC_END
),
};

void keyboard_post_init_user(void) {
rgb_matrix_mode(RGB_MATRIX_NONE);
rgb_matrix_set_color_all(RGB_BLACK);
}

uint32_t cancel_cmd(uint32_t trigger_time, void *cb_arg) {
if (get_highest_layer(layer_state|default_layer_state) > 0) {
return 20;
}
unregister_code(KC_LCMD);
return 0;
}

bool encoder_update_user(uint8_t index, bool clockwise) {
if (get_highest_layer(layer_state|default_layer_state) == 0) {
if (clockwise) {
tap_code_delay(KC_VOLU, 10);
} else {
tap_code_delay(KC_VOLD, 10);
}
} else {
if ((get_mods() & MOD_BIT(KC_LCMD)) != MOD_BIT(KC_LCMD)) {
register_code(KC_LCMD);
defer_exec(20, cancel_cmd, NULL);
}
if (clockwise) {
tap_code(KC_TAB);
} else {
tap_code16(S(KC_TAB));
}
}
return false;
}

void rgb_matrix_indicators_kb(void) {
switch(get_highest_layer(layer_state|default_layer_state)) {
case 1:
rgb_matrix_set_color_all(RGB_BLACK);
rgb_matrix_set_color_all(25, 25, 112);
break;
default:
rgb_matrix_set_color_all(RGB_BLACK);
break;
}
}
1 change: 1 addition & 0 deletions keyboards/keychron/q2/rev_0113/keymaps/dhertz/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFERRED_EXEC_ENABLE = yes
9 changes: 9 additions & 0 deletions users/dhertz/dhertz.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2022 Dan Hertz (@dhertz)
// SPDX-License-Identifier: GPL-3.0

#include "dhertz.h"

// Add reconfigurable functions here, for keymap customization
Expand Down Expand Up @@ -63,6 +66,12 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case CMD_SFT_L:
SEND_STRING(SS_LGUI("L"));
break;
case CMD_SFT_A:
SEND_STRING(SS_LGUI("A"));
break;
case CMD_SFT_ALT_A:
SEND_STRING(SS_LGUI(SS_LALT("A")));
break;
case ISO_COUNTRY_CODE:
SEND_STRING("country_iso_alpha2_code");
break;
Expand Down
5 changes: 5 additions & 0 deletions users/dhertz/dhertz.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2022 Dan Hertz (@dhertz)
// SPDX-License-Identifier: GPL-3.0

#ifndef USERSPACE
#define USERSPACE

Expand All @@ -15,6 +18,8 @@ enum custom_keycodes {
ISO_COUNTRY_CODE,
CMD_TAB_CMD,
CMD_GRV_CMD,
CMD_SFT_A,
CMD_SFT_ALT_A,
NEW_SAFE_RANGE,
};

Expand Down