aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/xd002/keymaps/tap_dance
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-05-01 17:59:22 +0100
committerGitHub <noreply@github.com>2020-05-01 17:59:22 +0100
commitf7324ec68494026c27b9c4af4b34bf4a98d2c75b (patch)
treece303538e8eed3d667ef5097eb7b279ad3030e77 /keyboards/xd002/keymaps/tap_dance
parent750c7c2bdbfb4b4e9d3a9efe6cb3f95ef0b43c53 (diff)
downloadfirmware-f7324ec68494026c27b9c4af4b34bf4a98d2c75b.tar.gz
firmware-f7324ec68494026c27b9c4af4b34bf4a98d2c75b.tar.bz2
firmware-f7324ec68494026c27b9c4af4b34bf4a98d2c75b.zip
Add xd002 support (#8598)
* Add xd002 support * tidy some whitespace * align filename * Update keyboards/xd002/info.json Co-authored-by: Erovia <Erovia@users.noreply.github.com> Co-authored-by: Erovia <Erovia@users.noreply.github.com>
Diffstat (limited to 'keyboards/xd002/keymaps/tap_dance')
-rw-r--r--keyboards/xd002/keymaps/tap_dance/config.h3
-rw-r--r--keyboards/xd002/keymaps/tap_dance/keymap.c19
-rw-r--r--keyboards/xd002/keymaps/tap_dance/rules.mk1
3 files changed, 23 insertions, 0 deletions
diff --git a/keyboards/xd002/keymaps/tap_dance/config.h b/keyboards/xd002/keymaps/tap_dance/config.h
new file mode 100644
index 000000000..b86e862d3
--- /dev/null
+++ b/keyboards/xd002/keymaps/tap_dance/config.h
@@ -0,0 +1,3 @@
+#pragma once
+
+#define TAPPING_TERM 500
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 @@
+#include QMK_KEYBOARD_H
+
+enum layers {
+ _BASE = 0,
+};
+
+enum {
+ TD_BC = 0
+};
+
+qk_tap_dance_action_t tap_dance_actions[] = {
+ [TD_BC] = ACTION_TAP_DANCE_DOUBLE(KC_B, KC_C)
+};
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ [_BASE] = LAYOUT(
+ KC_A, TD(TD_BC)
+ )
+};
diff --git a/keyboards/xd002/keymaps/tap_dance/rules.mk b/keyboards/xd002/keymaps/tap_dance/rules.mk
new file mode 100644
index 000000000..e5ddcae8d
--- /dev/null
+++ b/keyboards/xd002/keymaps/tap_dance/rules.mk
@@ -0,0 +1 @@
+TAP_DANCE_ENABLE = yes