]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/clueboard/card/card.h
Clueboard refresh (#4902)
[qmk_firmware.git] / keyboards / clueboard / card / card.h
1 #pragma once
2
3 #include "quantum.h"
4
5 // This a shortcut to help you visually see your layout.
6 // The first section contains all of the arguements
7 // The second converts the arguments into a two-dimensional array
8 #define LAYOUT( \
9         k00,      k01,      k02, \
10              k10,      k12,      \
11         k20,      k21,      k22, \
12              k11,                \
13                   k30, k31, k32  \
14 ) { \
15         { k00, k01, k02, }, \
16         { k10, k11, k12, }, \
17         { k20, k21, k22, }, \
18         { k30, k31, k32, } \
19 }