Decrease the timeout to 5 cycles

Having a long timeout for tap-dance is counter-intuitive, unlike for the other
special keys with timeouts. Use a short one instead.

Fixes #2.

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
pull/389/head
Gergely Nagy 8 years ago
parent 3dc12f29e3
commit e112ea3d69

@ -23,7 +23,7 @@ using namespace Akela::Ranges;
namespace Akela {
// --- state ---
uint16_t TapDance::timer;
uint16_t TapDance::timeOut = DEFAULT_TIMEOUT;
uint16_t TapDance::timeOut = 5;
uint8_t TapDance::tapCount[32];
uint32_t TapDance::pressedState;
uint32_t TapDance::triggeredState;

Loading…
Cancel
Save