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.

40 lines
592 B

  1. #pragma once
  2. #define XXX KC_NO
  3. #include "quantum.h"
  4. // This a shortcut to help you visually see your layout.
  5. #define LAYOUT_full( \
  6. K00, K01, K02, \
  7. K03, K04, K05 \
  8. ) \
  9. { \
  10. { K00, K01, K02, K03, K04, K05 } \
  11. }
  12. #define LAYOUT_blocker_right( \
  13. K00, K01, \
  14. K03, K04, K05 \
  15. ) \
  16. { \
  17. { K00, K01, XXX, K03, K04, K05 } \
  18. }
  19. #define LAYOUT_blocker_left( \
  20. K01, K02, \
  21. K03, K04, K05 \
  22. ) \
  23. { \
  24. { XXX, K01, K02, K03, K04, K05 } \
  25. }
  26. #define LAYOUT_arrows( \
  27. K01, \
  28. K03, K04, K05 \
  29. ) \
  30. { \
  31. { XXX, K01, XXX, K03, K04, K05 } \
  32. }