fbee737ff3
* 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
17 lines
240 B
C
17 lines
240 B
C
#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 } \
|
|
}
|