diff options
Diffstat (limited to 'keyboards/1k')
-rw-r--r-- | keyboards/1k/config.h | 4 | ||||
-rw-r--r-- | keyboards/1k/keymaps/tap_dance/keymap.c | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/keyboards/1k/config.h b/keyboards/1k/config.h index 06675824a6..f5d74426ef 100644 --- a/keyboards/1k/config.h +++ b/keyboards/1k/config.h @@ -15,7 +15,6 @@ */ #pragma once -#include "config_common.h" /* matrix size */ #define MATRIX_ROWS 1 @@ -28,9 +27,6 @@ */ #define DIRECT_PINS {{ B0 }} -/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ -#define DEBOUNCE 5 - #define RGBLED_NUM 1 #define RGB_DI_PIN B2 diff --git a/keyboards/1k/keymaps/tap_dance/keymap.c b/keyboards/1k/keymaps/tap_dance/keymap.c index c2a8cf1aea..1044924978 100644 --- a/keyboards/1k/keymaps/tap_dance/keymap.c +++ b/keyboards/1k/keymaps/tap_dance/keymap.c @@ -11,7 +11,7 @@ enum { TD_AB = 0 }; -qk_tap_dance_action_t tap_dance_actions[] = { +tap_dance_action_t tap_dance_actions[] = { [TD_AB] = ACTION_TAP_DANCE_DOUBLE(KC_A, KC_B) }; |