diff options
author | Seth Chandler <sethbc@sethbc.org> | 2016-11-19 11:20:41 -0500 |
---|---|---|
committer | Seth Chandler <sethbc@sethbc.org> | 2016-11-19 11:20:41 -0500 |
commit | ac7d202d4f143b19719b13c28177cee500896bca (patch) | |
tree | da08924cdf89b91219dc4440b5e839fe594763b6 /keyboards/maxipad/maxipad.h | |
parent | b2bc215934ddd31315db4304223750aee3eaf38d (diff) | |
parent | a06115df19a74d39b08758472b221e630c3680d3 (diff) | |
download | qmk_firmware-ac7d202d4f143b19719b13c28177cee500896bca.tar.gz qmk_firmware-ac7d202d4f143b19719b13c28177cee500896bca.zip |
merge upstream/master
Diffstat (limited to 'keyboards/maxipad/maxipad.h')
-rw-r--r-- | keyboards/maxipad/maxipad.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/keyboards/maxipad/maxipad.h b/keyboards/maxipad/maxipad.h new file mode 100644 index 0000000000..eee1309ddc --- /dev/null +++ b/keyboards/maxipad/maxipad.h @@ -0,0 +1,25 @@ +#ifndef MAXIPAD_H +#define MAXIPAD_H + +#include "quantum.h" + +// This a shortcut to help you visually see your layout. +// The following is an example using the Planck MIT layout +// The first section contains all of the arguements +// The second converts the arguments into a two-dimensional array +#define KEYMAP( \ + k00, k01, k02, k03, k04, k05, \ + k10, k11, k12, k13, k14, k15, \ + k20, k21, k22, k23, k24, k25, \ + k30, k31, k32, k33, k34, k35, \ + k40, k41, k42, k43, k44, k45 \ +) \ +{ \ + { k00, k01, k02, k03, k04, k05 }, \ + { k10, k11, k12, k13, k14, k15 }, \ + { k20, k21, k22, k23, k24, k25 }, \ + { k30, k31, k32, k33, k34, k35 }, \ + { k40, k41, k42, k43, k44, k45} \ +} + +#endif |