diff options
Diffstat (limited to 'keyboards/xd002/keymaps/tap_dance/keymap.c')
| -rw-r--r-- | keyboards/xd002/keymaps/tap_dance/keymap.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/xd002/keymaps/tap_dance/keymap.c b/keyboards/xd002/keymaps/tap_dance/keymap.c new file mode 100644 index 000000000..0f384ce99 --- /dev/null +++ b/keyboards/xd002/keymaps/tap_dance/keymap.c | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | enum layers { | ||
| 4 | _BASE = 0, | ||
| 5 | }; | ||
| 6 | |||
| 7 | enum { | ||
| 8 | TD_BC = 0 | ||
| 9 | }; | ||
| 10 | |||
| 11 | qk_tap_dance_action_t tap_dance_actions[] = { | ||
| 12 | [TD_BC] = ACTION_TAP_DANCE_DOUBLE(KC_B, KC_C) | ||
| 13 | }; | ||
| 14 | |||
| 15 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 16 | [_BASE] = LAYOUT( | ||
| 17 | KC_A, TD(TD_BC) | ||
| 18 | ) | ||
| 19 | }; | ||
