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
490 B

8 years ago
8 years ago
  1. // Copyright %(YEAR)s %(YOUR_NAME)s (@%(USER_NAME)s)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include QMK_KEYBOARD_H
  4. // Defines names for use in layer keycodes and the keymap
  5. enum layer_names {
  6. _BASE,
  7. _FN
  8. };
  9. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  10. /* Base */
  11. [_BASE] = LAYOUT(
  12. KC_A, KC_1, MO(_FN),
  13. KC_TAB, KC_SPC
  14. ),
  15. [_FN] = LAYOUT(
  16. _______, _______, _______,
  17. RESET, XXXXXXX
  18. )
  19. };