You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
387 B

  1. // Copyright 2022 Makoto Kurauchi (@MakotoKurauchi)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include QMK_KEYBOARD_H
  4. enum layers {
  5. _BASE = 0,
  6. };
  7. enum {
  8. TD_AB = 0
  9. };
  10. tap_dance_action_t tap_dance_actions[] = {
  11. [TD_AB] = ACTION_TAP_DANCE_DOUBLE(KC_A, KC_B)
  12. };
  13. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  14. [_BASE] = LAYOUT_ortho_1x1(
  15. TD(TD_AB)
  16. )
  17. };