[Keyboard] Fix 9key macropad keymap (#5942)
Fails to compile on the configurator because tapdance is enabled for the entire keyboard
This commit is contained in:
parent
fc3965ef70
commit
eb756916c2
5 changed files with 76 additions and 36 deletions
|
@ -1,16 +1,5 @@
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
// Tap Dance Declarations
|
|
||||||
enum {
|
|
||||||
ENT_5 = 0,
|
|
||||||
ZERO_7
|
|
||||||
};
|
|
||||||
|
|
||||||
// Macro Declarations
|
|
||||||
enum {
|
|
||||||
DBL_0 = 0
|
|
||||||
};
|
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
/* LAYER 0
|
/* LAYER 0
|
||||||
|
@ -24,8 +13,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
*/
|
*/
|
||||||
[0] = LAYOUT( \
|
[0] = LAYOUT( \
|
||||||
KC_1, KC_2, KC_3, \
|
KC_1, KC_2, KC_3, \
|
||||||
KC_4, TD(ENT_5), KC_6, \
|
KC_4, KC_5, KC_6, \
|
||||||
TD(ZERO_7), KC_8, LT(1, KC_9) \
|
KC_7, KC_8, LT(1, KC_9) \
|
||||||
),
|
),
|
||||||
|
|
||||||
/* LAYER 1
|
/* LAYER 1
|
||||||
|
@ -39,27 +28,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
*/
|
*/
|
||||||
[1] = LAYOUT( \
|
[1] = LAYOUT( \
|
||||||
KC_ESC, KC_PLUS, KC_MINS, \
|
KC_ESC, KC_PLUS, KC_MINS, \
|
||||||
KC_BSPC, KC_ASTR, KC_SLSH, \
|
KC_ENTER, KC_ASTR, KC_SLSH, \
|
||||||
M(DBL_0), KC_DOT, KC_TRNS \
|
KC_0, KC_DOT, KC_TRNS \
|
||||||
)
|
)
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
qk_tap_dance_action_t tap_dance_actions[] = {
|
|
||||||
[ENT_5] = ACTION_TAP_DANCE_DOUBLE(KC_5, KC_ENT),
|
|
||||||
[ZERO_7] = ACTION_TAP_DANCE_DOUBLE(KC_7, KC_0)
|
|
||||||
};
|
|
||||||
|
|
||||||
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
|
|
||||||
if (record->event.pressed) {
|
|
||||||
switch(id) {
|
|
||||||
case DBL_0:
|
|
||||||
SEND_STRING("00");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return MACRO_NONE;
|
|
||||||
};
|
|
||||||
|
|
||||||
void matrix_init_user(void) {
|
|
||||||
}
|
|
69
keyboards/9key/keymaps/tap_dance/keymap.c
Normal file
69
keyboards/9key/keymaps/tap_dance/keymap.c
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
|
// Tap Dance Declarations
|
||||||
|
enum tap_dances {
|
||||||
|
ENT_5 = 0,
|
||||||
|
ZERO_7,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Macro Declarations
|
||||||
|
enum custom_keycodes {
|
||||||
|
DBL_0 = SAFE_RANGE,
|
||||||
|
};
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
|
/* LAYER 0
|
||||||
|
* ,-----------------------.
|
||||||
|
* | 1 | 2 | 3 |
|
||||||
|
* |-------+-------+-------|
|
||||||
|
* | 4 | 5/ENT | 6 | Dbl Tap 5 for Enter
|
||||||
|
* |-------+-------+-------|
|
||||||
|
* | 7/0 | 8 | 9/FN | 7/0 = Dbl Tap 7 for 0 - 9/FN = Hold 9 for FN
|
||||||
|
* `-----------------------'
|
||||||
|
*/
|
||||||
|
[0] = LAYOUT( \
|
||||||
|
KC_1, KC_2, KC_3, \
|
||||||
|
KC_4, TD(ENT_5), KC_6, \
|
||||||
|
TD(ZERO_7), KC_8, LT(1, KC_9) \
|
||||||
|
),
|
||||||
|
|
||||||
|
/* LAYER 1
|
||||||
|
* ,-----------------------.
|
||||||
|
* | ESC | + | - |
|
||||||
|
* |-------+-------+-------|
|
||||||
|
* | BSPC | * | / |
|
||||||
|
* |-------+-------+-------|
|
||||||
|
* | 00 | . | |
|
||||||
|
* `-----------------------'
|
||||||
|
*/
|
||||||
|
[1] = LAYOUT( \
|
||||||
|
KC_ESC, KC_PLUS, KC_MINS, \
|
||||||
|
KC_BSPC, KC_ASTR, KC_SLSH, \
|
||||||
|
DBL_0, KC_DOT, KC_TRNS \
|
||||||
|
)
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
qk_tap_dance_action_t tap_dance_actions[] = {
|
||||||
|
[ENT_5] = ACTION_TAP_DANCE_DOUBLE(KC_5, KC_ENT),
|
||||||
|
[ZERO_7] = ACTION_TAP_DANCE_DOUBLE(KC_7, KC_0)
|
||||||
|
};
|
||||||
|
|
||||||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
|
switch (keycode) {
|
||||||
|
case DBL_0:
|
||||||
|
if (record->event.pressed) {
|
||||||
|
// when keycode QMKBEST is pressed
|
||||||
|
tap_code(KC_P0);
|
||||||
|
tap_code(KC_P0);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void matrix_init_user(void) {
|
||||||
|
}
|
1
keyboards/9key/keymaps/tap_dance/rules.mk
Normal file
1
keyboards/9key/keymaps/tap_dance/rules.mk
Normal file
|
@ -0,0 +1 @@
|
||||||
|
TAP_DANCE_ENABLE = yes
|
|
@ -63,7 +63,7 @@ UNICODE_ENABLE = yes # Unicode
|
||||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
||||||
API_SYSEX_ENABLE = yes
|
API_SYSEX_ENABLE = yes
|
||||||
TAP_DANCE_ENABLE = yes
|
TAP_DANCE_ENABLE = no
|
||||||
|
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
|
Loading…
Reference in a new issue