]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/sweet16/sweet16.h
879f51fae66afffbd870de5a3c0e7fbecb9ff7f4
[qmk_firmware.git] / keyboards / sweet16 / sweet16.h
1 #ifndef KB_H
2 #define KB_H
3
4 #include "quantum.h"
5
6 // Any changes to the layout names and/or definitions must also be made to info.json
7
8 #define LAYOUT_ortho_4x4( \
9     K00, K01, K02, K03, \
10     K10, K11, K12, K13, \
11     K20, K21, K22, K23, \
12     K30, K31, K32, K33  \
13 ) { \
14     { K00,   K01,   K02,   K03 }, \
15     { K10,   K11,   K12,   K13 }, \
16     { K20,   K21,   K22,   K23 }, \
17     { K30,   K31,   K32,   K33 }  \
18 }
19
20 #define LAYOUT_numpad_4x4( \
21     K00, K01, K02, K03, \
22     K10, K11, K12,      \
23     K20, K21, K22, K23, \
24        K31,   K32      \
25 ) { \
26     { K00,   K01,   K02,   K03 }, \
27     { K10,   K11,   K12,   KC_NO }, \
28     { K20,   K21,   K22,   K23 }, \
29     { KC_NO, K31,   K32,   KC_NO }  \
30 }
31
32 #endif