diff options
Diffstat (limited to 'quantum/template/template.h')
-rw-r--r-- | quantum/template/template.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/quantum/template/template.h b/quantum/template/template.h new file mode 100644 index 0000000000..cd78a54e3e --- /dev/null +++ b/quantum/template/template.h @@ -0,0 +1,19 @@ +#ifndef %KEYBOARD_UPPERCASE%_H +#define %KEYBOARD_UPPERCASE%_H + +#include "quantum.h" + +// This a shortcut to help you visually see your layout. +// The following is an example using the Planck MIT layout +// The first section contains all of the arguements +// The second converts the arguments into a two-dimensional array +#define KEYMAP( \ + k00, k01, k02, \ + k10, k11 \ +) \ +{ \ + { k00, k01, k02 }, \ + { k10, KC_NO, k11 }, \ +} + +#endif |