]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/cluecard/cluecard.h
Address #1689 by using a formula to define the breathing curve (#1692)
[qmk_firmware.git] / keyboards / cluecard / cluecard.h
1 #ifndef CLUECARD_H
2 #define CLUECARD_H
3
4 #include "quantum.h"
5
6 // This a shortcut to help you visually see your layout.
7 // The first section contains all of the arguements
8 // The second converts the arguments into a two-dimensional array
9 #define KEYMAP( \
10         k00, k01, k02, \
11         k10, k12, \
12         k20, k21, k22, \
13         k11, \
14         k30, k31, k32 \
15 ) { \
16         { k00, k01, k02, }, \
17         { k10, k11, k12, }, \
18         { k20, k21, k22, }, \
19         { k30, k31, k32, } \
20 }
21
22 #endif