template.h 450 B

12345678910111213141516171819
  1. #ifndef %KEYBOARD_UPPERCASE%_H
  2. #define %KEYBOARD_UPPERCASE%_H
  3. #include "quantum.h"
  4. // This a shortcut to help you visually see your layout.
  5. // The following is an example using the Planck MIT layout
  6. // The first section contains all of the arguements
  7. // The second converts the arguments into a two-dimensional array
  8. #define KEYMAP( \
  9. k00, k01, k02, \
  10. k10, k11 \
  11. ) \
  12. { \
  13. { k00, k01, k02 }, \
  14. { k10, KC_NO, k11 }, \
  15. }
  16. #endif