handwired/numpad20 Refactor and Configurator support (#4589)
[jackhill/qmk/firmware.git] / keyboards / handwired / numpad20 / numpad20.h
1 #ifndef NUMPAD20_H
2 #define NUMPAD20_H
3
4 #include "quantum.h"
5
6 #define LAYOUT( \
7 K00, K01, K02, K03, \
8 K10, K11, K12, K13, \
9 K20, K21, K22, K23, \
10 K30, K31, K32, K33, \
11 K40, K41, K42, K43 \
12 ) { \
13 { K00, K01, K02, K03 }, \
14 { K10, K11, K12, K13 }, \
15 { K20, K21, K22, K23 }, \
16 { K30, K31, K32, K33 }, \
17 { K40, K41, K42, K43 } \
18 }
19
20 #endif