]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/sweet16/sweet16.h
several improvements for mitosis:datagrok (#1960)
[qmk_firmware.git] / keyboards / sweet16 / sweet16.h
1 #ifndef KB_H
2 #define KB_H
3
4 #include "quantum.h"
5
6 #define LAYOUT_ortho_4x4( \
7     K00, K01, K02, K03, \
8     K10, K11, K12, K13, \
9     K20, K21, K22, K23, \
10     K30, K31, K32, K33  \
11 ) { \
12     { K00,   K01,   K02,   K03 }, \
13     { K10,   K11,   K12,   K13 }, \
14     { K20,   K21,   K22,   K23 }, \
15     { K30,   K31,   K32,   K33 }  \
16 }
17
18 #define LAYOUT_numpad_4x4( \
19     K00, K01, K02, K03, \
20     K10, K11, K12,      \
21     K20, K21, K22, K23, \
22        K31,   K32      \
23 ) { \
24     { K00,   K01,   K02,   K03 }, \
25     { K10,   K11,   K12,   K13 }, \
26     { K20,   K21,   K22,   K23 }, \
27     { K30,   K31,   K32,   K33 }  \
28 }
29
30 #endif