]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/obelus/obelus.h
Added Obelus
[qmk_firmware.git] / keyboards / obelus / obelus.h
1 #ifndef OBELUS_H
2 #define OBELUS_H
3
4 #include "quantum.h"
5
6 // This a shortcut to help you visually see your layout.
7 // The following is an example using the Planck MIT layout
8 // The first section contains all of the arguements
9 // The second converts the arguments into a two-dimensional array
10 #define KEYMAP( \
11     k00, k01, k02, k03, \
12     k10, k11, k12, k13, \
13     k20, k21, k22, k23, \
14     k30, k31, k32, k33 \
15 ) \
16 { \
17     { k00, k01, k02, k03 }, \
18     { k10, k11, k12, k13 }, \
19     { k20, k21, k22, k23 }, \
20     { k30, k31, k32, k33 } \
21 }
22
23 #endif