handwire_101.h 521 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "quantum.h"
  3. // This a shortcut to help you visually see your layout.
  4. // The following is an example using the Planck MIT layout
  5. // The first section contains all of the arguements
  6. // The second converts the arguments into a two-dimensional array
  7. #define LAYOUT( \
  8. k00, k01, k02, k03, \
  9. k10, k11, k12, k13, \
  10. k20, k21, k22, k23, \
  11. k30, k31, k32, k33 \
  12. ) \
  13. { \
  14. { k00, k01, k02, k03 }, \
  15. { k10, k11, k12, k13 }, \
  16. { k20, k21, k22, k23 }, \
  17. { k30, k31, k32, k33 } \
  18. }