Add RAMA x Machine Industries M10A to the keyboards directory

This commit is contained in:
Josh Black 2017-04-25 18:51:45 +01:00
parent 187c78f3cb
commit d6386b108b
7 changed files with 229 additions and 0 deletions

19
keyboards/M10A/M10A.h Normal file
View file

@ -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