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.

44 lines
2.0 KiB

  1. /* Copyright 2020 Ralph Azucena <ralphie02@live.com>
  2. * This program is free software: you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License as published by
  4. * the Free Software Foundation, either version 2 of the License, or
  5. * (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #pragma once
  16. #include "quantum.h"
  17. #define LAYOUT_6x6(\
  18. L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \
  19. L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \
  20. L20, L21, L22, L23, L24, L25, R20, R21, R22, R23, R24, R25, \
  21. L30, L31, L32, L33, L34, L35, R30, R31, R32, R33, R34, R35, \
  22. L40, L41, L42, L43, L44, R41, R42, R43, R44, R45, \
  23. L55, L54, R51, R50, \
  24. L53, R52, \
  25. L50, L51, L52, R53, R54, R55 \
  26. )\
  27. {\
  28. { L00, L01, L02, L03, L04, L05 }, \
  29. { L10, L11, L12, L13, L14, L15 }, \
  30. { L20, L21, L22, L23, L24, L25 }, \
  31. { L30, L31, L32, L33, L34, L35 }, \
  32. { L40, L41, L42, L43, L44, KC_NO }, \
  33. { L50, L51, L52, L53, L54, L55 }, \
  34. \
  35. { R00, R01, R02, R03, R04, R05 }, \
  36. { R10, R11, R12, R13, R14, R15 }, \
  37. { R20, R21, R22, R23, R24, R25 }, \
  38. { R30, R31, R32, R33, R34, R35 }, \
  39. { KC_NO, R41, R42, R43, R44, R45 }, \
  40. { R50, R51, R52, R53, R54, R55 } \
  41. }