mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-11 22:44:56 +00:00
test td changes
This commit is contained in:
parent
6ca1c49d38
commit
c7cddfc539
2 changed files with 6 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
TAP_DANCE_ENABLE = yes
|
||||
ifndef QUANTUM_DIR
|
||||
include ../../../../Makefile
|
||||
endif
|
||||
TAP_DANCE_ENABLE = yes
|
||||
|
|
|
@ -178,6 +178,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||
|
||||
};
|
||||
|
||||
|
||||
const qk_tap_dance_action_t tape_dance_actions[] = {
|
||||
[TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS)
|
||||
};
|
||||
|
||||
#ifdef AUDIO_ENABLE
|
||||
|
||||
float tone_startup[][2] = SONG(SONIC_RING); //plug in
|
||||
|
@ -321,9 +326,3 @@ void music_scale_user(void)
|
|||
}
|
||||
|
||||
#endif
|
||||
|
||||
// Tap Dance Definitions
|
||||
const 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)
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue