aboutsummaryrefslogtreecommitdiff
path: root/keyboards/xd002/keymaps/tap_dance/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/xd002/keymaps/tap_dance/keymap.c')
-rw-r--r--keyboards/xd002/keymaps/tap_dance/keymap.c19
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
3enum layers {
4 _BASE = 0,
5};
6
7enum {
8 TD_BC = 0
9};
10
11qk_tap_dance_action_t tap_dance_actions[] = {
12 [TD_BC] = ACTION_TAP_DANCE_DOUBLE(KC_B, KC_C)
13};
14
15const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
16 [_BASE] = LAYOUT(
17 KC_A, TD(TD_BC)
18 )
19};