diff options
author | Nick Choi <iinikchi@gmail.com> | 2017-05-23 19:13:23 +0200 |
---|---|---|
committer | Nick Choi <iinikchi@gmail.com> | 2017-05-23 19:13:23 +0200 |
commit | 0e174fcb48471b6af79f1456d65edf7c22d8b903 (patch) | |
tree | 0aee5e6db3c2c54acdfaac6ea0feeed3520d43d6 /keyboards/m10a/m10a.h | |
parent | 3ed2147a888401ef31a008db02a4ef8bd25d4380 (diff) | |
parent | ec86fac6eee6e5148bc491497aadf2abed09a8ea (diff) | |
download | qmk_firmware-0e174fcb48471b6af79f1456d65edf7c22d8b903.tar.gz qmk_firmware-0e174fcb48471b6af79f1456d65edf7c22d8b903.tar.xz |
Merge branch 'master' of https://github.com/nikchi/qmk_firmware
Diffstat (limited to 'keyboards/m10a/m10a.h')
-rw-r--r-- | keyboards/m10a/m10a.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/m10a/m10a.h b/keyboards/m10a/m10a.h new file mode 100644 index 000000000..6ec334fb3 --- /dev/null +++ b/keyboards/m10a/m10a.h @@ -0,0 +1,19 @@ +#ifndef M10A_H +#define M10A_H + +#include "quantum.h" + +#define M10A( \ + k00, k01, k02, \ + k10, k11, k12, \ + k20, k21, k22, \ + k30, k31, k32 \ +) \ +{ \ + { k00, k01, k02 }, \ + { k10, k11, k12 }, \ + { k20, k21, k22 }, \ + { k30, k31, k32 } \ +} + +#endif |