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.

42 lines
1.6 KiB

  1. /* Good on you for modifying your layout! if you don't have
  2. * time to read the QMK docs, a list of keycodes can be found at
  3. *
  4. * https://github.com/qmk/qmk_firmware/blob/master/docs/keycodes.md
  5. *
  6. * There's also a template for adding new layers at the bottom of this file!
  7. */
  8. #include QMK_KEYBOARD_H
  9. #define FIESTA 0 // default layer
  10. #define TACOTIME 1 // symbols
  11. // Blank template at the bottom
  12. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  13. /* Keymap template
  14. *
  15. * ,-------------------------------------------------. ,--------------------------------------------.
  16. * | | | | | | | | | | | | | | |
  17. * `-------+------+------+------+------+-------------' `-------+------+------+------+------+--------' */
  18. [FIESTA] = LAYOUT(
  19. KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H
  20. ),
  21. };
  22. /* Keymap template
  23. *
  24. * ,-------------------------------------------------. ,--------------------------------------------.
  25. * | | | | | | | | | | | | | | |
  26. * `-------+------+------+------+------+-------------' `-------+------+------+------+------+--------'
  27. [FIESTA] = LAYOUT(
  28. KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
  29. ),
  30. */
  31. // Runs just one time when the keyboard initializes.
  32. void matrix_init_user(void) {
  33. };
  34. // Runs constantly in the background, in a loop.
  35. void matrix_scan_user(void) {
  36. };