diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-05-30 15:38:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-30 15:38:22 -0400 |
commit | 328bde1624ecf7c5bce878398f39dd580ded5014 (patch) | |
tree | 904169689b45d99760e7b64ba03a877a07036a14 /keyboards/frosty_flake/keymaps/nikchi/variableTapDance.md | |
parent | cb791cf6cdbcd9fd1291f36f6b1a6840753db97f (diff) | |
parent | 3c4022c41bc69b0bec94b2f34b6958ff41924254 (diff) |
Merge pull request #1323 from nikchi/master
Variable tapping terms
Diffstat (limited to 'keyboards/frosty_flake/keymaps/nikchi/variableTapDance.md')
-rw-r--r-- | keyboards/frosty_flake/keymaps/nikchi/variableTapDance.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/keyboards/frosty_flake/keymaps/nikchi/variableTapDance.md b/keyboards/frosty_flake/keymaps/nikchi/variableTapDance.md new file mode 100644 index 0000000000..b2e5041393 --- /dev/null +++ b/keyboards/frosty_flake/keymaps/nikchi/variableTapDance.md @@ -0,0 +1,9 @@ +# Tap Dancing to different beats. +Tap Dance is constrained normally by `TAPPING_TERM` defined in your keyboard's config.h This proves to be challenging to work with when sometimes you just need more time to tap out your dance, or even a different "beat". + + + +- `ACTION_TAP_DANCE_FN_ADVANCED_TIME(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset, tap_specific_tapping_term)` : This works the same as `ACTION_TAP_DANCE_FN_ADVANCED` just with the extra `tap_specific_tapping_term` arguement at the end. This way you can set a specific tap dance to have a longer or shorter tap in between your taps, giving you more, or less, time in between each tap. + + +`tap_specific_tapping_term` should be the same type and range of values that one would put into the `TAPPING_TERM` definition in the config.h file. |