ver2.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. Copyright 2020 Pabile
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  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. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #pragma once
  15. #include "quantum.h"
  16. #define LAYOUT_ortho_5x4( \
  17. k00, k01, k02, k03, \
  18. k10, k11, k12, k13, \
  19. k20, k21, k22, k23, \
  20. k30, k31, k32, k33, \
  21. k40, k41, k42, k43 \
  22. ) \
  23. { \
  24. {k00, k01, k02, k03}, \
  25. {k10, k11, k12, k13}, \
  26. {k20, k21, k22, k23}, \
  27. {k30, k31, k32, k33}, \
  28. {k40, k41, k42, k43} \
  29. }
  30. #define LAYOUT_numpad_5x4( \
  31. k00, k01, k02, k03, \
  32. k10, k11, k12, \
  33. k20, k21, k22, k23, \
  34. k30, k31, k32, \
  35. k40, k42, k43 \
  36. ) \
  37. { \
  38. {k00, k01, k02, k03}, \
  39. {k10, k11, k12, KC_NO}, \
  40. {k20, k21, k22, k23}, \
  41. {k30, k31, k32, KC_NO}, \
  42. {k40, KC_NO, k42, k43} \
  43. }