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