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