forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dz60 map with arrow keys (qmk#2270)
- Loading branch information
1 parent
c776c1c
commit 5b22ddf
Showing
1 changed file
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
#include "dz60.h" | ||
|
||
#define MODS_CTRL_MASK (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT)) | ||
|
||
#define ______ KC_TRNS | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
|
||
/* Qwerty | ||
* ,-----------------------------------------------------------------------------------------. | ||
* | ` ~ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | Bkspc | | ||
* |-----------------------------------------------------------------------------------------+ | ||
* | Tab | Q | W | E | R | T | Y | U | I | O | P | [ | ] | \ | | ||
* |-----------------------------------------------------------------------------------------+ | ||
* | Caps | A | S | D | F | G | H | J | K | L | ; | ' | Enter | | ||
* |-----------------------------------------------------------------------------------------+ | ||
* | Shift | Z | X | C | V | B | N | M | , | . | / | RSh | U | FN | | ||
* |-----------------------------------------------------------------------------------------+ | ||
* | Ctrl | Alt | Cmd | Space | Cmd | RAlt | L | D | R | | ||
* `-----------------------------------------------------------------------------------------' | ||
*/ | ||
|
||
KEYMAP_2_SHIFTS( | ||
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_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_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_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, MO(1), | ||
KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_SPC, KC_SPC, KC_RGUI, KC_RALT, KC_LEFT, KC_DOWN, KC_RIGHT | ||
), | ||
|
||
/* FN Layer | ||
* ,-----------------------------------------------------------------------------------------. | ||
* | Esc | BL- | BL+ | BL | | | |RESET| | | | | | | | ||
* |-----------------------------------------------------------------------------------------+ | ||
* | |RBGM | | | | | | | | | | Val+ | Val- |RBGTOG| | ||
* |-----------------------------------------------------------------------------------------+ | ||
* | | Hue+| Hue-| Sat+| Sat-| | | | | | | | | | ||
* |-----------------------------------------------------------------------------------------+ | ||
* | | | | | | | | | | | | | Ctrl| | | ||
* |-----------------------------------------------------------------------------------------+ | ||
* | | | | | | | | | | | ||
* `-----------------------------------------------------------------------------------------' | ||
*/ | ||
|
||
KEYMAP_DIRECTIONAL( | ||
KC_ESC, BL_TOGG, BL_STEP, BL_DEC, BL_INC, ______, ______, RESET, ______, ______, ______, ______, ______, ______, ______, | ||
______, RGB_MOD, ______, ______, ______, ______, ______, ______, ______, ______, ______, RGB_VAI, RGB_VAD, RGB_TOG, | ||
______, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, ______, ______, ______, ______, ______, ______, ______, | ||
______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, KC_RCTL, ______, | ||
______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______ | ||
), | ||
}; | ||
|
||
enum function_id { | ||
SHIFT_ESC, | ||
}; | ||
|
||
const uint16_t PROGMEM fn_actions[] = { | ||
[0] = ACTION_FUNCTION(SHIFT_ESC), | ||
}; | ||
|
||
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) { | ||
static uint8_t shift_esc_shift_mask; | ||
switch (id) { | ||
case SHIFT_ESC: | ||
shift_esc_shift_mask = get_mods()&MODS_CTRL_MASK; | ||
if (record->event.pressed) { | ||
if (shift_esc_shift_mask) { | ||
add_key(KC_GRV); | ||
send_keyboard_report(); | ||
} else { | ||
add_key(KC_ESC); | ||
send_keyboard_report(); | ||
} | ||
} else { | ||
if (shift_esc_shift_mask) { | ||
del_key(KC_GRV); | ||
send_keyboard_report(); | ||
} else { | ||
del_key(KC_ESC); | ||
send_keyboard_report(); | ||
} | ||
} | ||
break; | ||
} | ||
} |