diff options
author | Garret G <45295190+TheRoyalSweatshirt@users.noreply.github.com> | 2019-04-01 22:31:38 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-01 20:31:38 -0700 |
commit | fbee737ff3b767f0ce95da61a154ef6334312887 (patch) | |
tree | 108c1c71704fda97771e594c3f009bc3d4a825f4 /keyboards/romac/romac.h | |
parent | 40c6269f9fdd279b16ee49e49c8fbd256b79ccae (diff) | |
download | qmk_firmware-fbee737ff3b767f0ce95da61a154ef6334312887.tar.gz |
[Keyboard] add support for romac macropad (#5530)
* add support for romac macropad
* Update info.json
fixed total key_count
* Update keymap.c
* Update keymap.c
* Update README.md
* Update config.h
* Update romac.h
* Update romac.h
* Update romac.h
* Update rules.mk
* Update config.h
* Update README.md
* Update romac.h
* Update README.md
* Update README.md
* Update README.md
* Update config.h
* Update config.h
* Update config.h
* Update info.json
* Update info.json
* Update info.json
* Update keymap.c
* Update keymap.c
* Update keymap.c
* Update README.md
* Update README.md
* Update README.md
* Update config.h
* Rename README.md to readme.md
* Update rules.mk
* Update config.h
* Delete .gitattributes
* Update romac.h
* Update config.h
* Update config.h
* Update keymap.c
* Update keymap.c
* Update keymap.c
* Update readme.md
* Update readme.md
* Update readme.md
* Update info.json
* Update config.h
* Update config.h
* Update config.h
* Update readme.md
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 000000000..e6fb9694d --- /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 } \ +} |