pana_m8: Add debouncing

This commit is contained in:
tmk 2017-08-21 23:23:34 +09:00
parent 9ac2580687
commit 894e393c67
2 changed files with 19 additions and 5 deletions

View file

@ -14,6 +14,9 @@
#define MATRIX_ROWS 8
#define MATRIX_COLS 8
/* matrix debounce time in ms */
#define DEBOUNCE 10
/* key combination for command */
#define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)))