test tap dance

This commit is contained in:
Dylan Khor 2017-03-16 12:44:56 -04:00
parent 24d1745951
commit 0c8f71e3c7
3 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,4 @@
ifndef QUANTUM_DIR
include ../../../../Makefile
endif
TAP_DANCE_ENABLE = yes

View File

@ -62,6 +62,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
)
/* Tap Dance */
#define TAPPING_TERM 200
/*
* Feature disable options
* These options are also useful to firmware size reduction.

View File

@ -33,6 +33,18 @@ enum planck_keycodes {
EXT_PLV
};
// Tap Dance Declarations
enum {
TD_ESC_CAPS = 0
};
// Tap Dance Definitions
qk_tap_dance_action_t tape_dance_actions[] = {
//Tap once for Esc, twice for Caps Lock
[TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS)
// Other declarations would go here, separated by commas, if you have them
};
// Fillers to make layering more clear
#define _______ KC_TRNS
#define XXXXXXX KC_NO
@ -56,7 +68,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
*/
[_QWERTY] = {
{KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC},
{KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT},
{TD(TD_ESC_CAPS), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT},
{KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, SFT_T(KC_ENT) },
{BACKLIT, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT}
},