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.

26 lines
769 B

  1. #ifndef LAPTREUS_H
  2. #define LAPTREUS_H
  3. #include "quantum.h"
  4. #include "outputselect.h"
  5. /*
  6. // This a shortcut to help you visually see your layout.
  7. // The first section contains all of the arguments
  8. // The second converts the arguments into a two-dimensional array
  9. */
  10. #define LAYOUT( \
  11. A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, \
  12. B1, B2, B3, B4, B5, B6, B7, B8, B9, B10, B11, B12, \
  13. C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, \
  14. D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12 \
  15. ) \
  16. { \
  17. {A2, A3, A4, A5, A6, A7, A8, A9, A10, A11}, \
  18. {B2, B3, B4, B5, B6, B7, B8, B9, B10, B11}, \
  19. {C2, C3, C4, C5, C6, C7, C8, C9, C10, C11}, \
  20. {D2, D3, D4, D5, D6, D7, D8, D9, D10, D11}, \
  21. {A1, B1, C1, D1, KC_NO, KC_NO, D12, C12, B12, A12} \
  22. }
  23. #endif