keymap.c 807 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * PLANCK - Dvorak turkish
  3. * Keymap by @bbaserdem
  4. * Dvorak layout with multiple features
  5. * Most of the code is in the "user" directory.
  6. * Check qmk_firmware/users/bbaserdem for the main part of the code
  7. */
  8. #include "planck.h"
  9. #include "bbaserdem.h"
  10. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  11. // Main Dvorak layer
  12. [_DV] = LAYOUT_planck_wrapper(DVORAK),
  13. // Turkish and special character overlay
  14. [_AL] = LAYOUT_planck_wrapper(ALTCHAR),
  15. // Gaming layer
  16. [_GA] = LAYOUT_planck_wrapper(GAME),
  17. // Numbers layer
  18. [_NU] = LAYOUT_planck_wrapper(NUMBERS),
  19. // Settings layer
  20. [_SE] = LAYOUT_planck_wrapper(SETTINGS),
  21. // Mouse emulation layer
  22. [_MO] = LAYOUT_planck_wrapper(MOUSE),
  23. // Music mode
  24. [_MU] = LAYOUT_planck_wrapper(MUSIC),
  25. };