diff options
Diffstat (limited to 'keyboards/romac/romac.h')
-rw-r--r-- | keyboards/romac/romac.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/keyboards/romac/romac.h b/keyboards/romac/romac.h new file mode 100644 index 0000000000..e6fb9694d2 --- /dev/null +++ b/keyboards/romac/romac.h @@ -0,0 +1,16 @@ +#pragma once + +#include "quantum.h" + +#define LAYOUT( \ + K00, K01, K02, \ + K10, K11, K12, \ + K20, K21, K22, \ + K30, K31, K32 \ +) \ +{ \ + { K00, K01, K02 }, \ + { K10, K11, K12 }, \ + { K20, K21, K22 }, \ + { K30, K31, K32 } \ +} |