]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/template/template.h
Merge branch 'layer_state_set_kb' into promethium
[qmk_firmware.git] / quantum / template / template.h
1 #ifndef %KEYBOARD_UPPERCASE%_H
2 #define %KEYBOARD_UPPERCASE%_H
3
4 #include "quantum.h"
5
6 // This a shortcut to help you visually see your layout.
7 // The following is an example using the Planck MIT layout
8 // The first section contains all of the arguements
9 // The second converts the arguments into a two-dimensional array
10 #define KEYMAP( \
11     k00, k01, k02, \
12       k10,  k11   \
13 ) \
14 { \
15     { k00, k01,   k02 }, \
16     { k10, KC_NO, k11 }, \
17 }
18
19 #endif