forked from forks/qmk_firmware
8b6cdd1788
* handwired/numpad20: refactor - layout macro no longer auto-prepends keycodes with KC_ - keymaps for this keyboard will now compile in QMK Configurator - keymap now uses #include QMK_KEYBOARD_H - deleted unused fn_actions code block * handwired/numpad20: Configurator support
21 lines
373 B
C
21 lines
373 B
C
#ifndef NUMPAD20_H
|
|
#define NUMPAD20_H
|
|
|
|
#include "quantum.h"
|
|
|
|
#define LAYOUT( \
|
|
K00, K01, K02, K03, \
|
|
K10, K11, K12, K13, \
|
|
K20, K21, K22, K23, \
|
|
K30, K31, K32, K33, \
|
|
K40, K41, K42, K43 \
|
|
) { \
|
|
{ K00, K01, K02, K03 }, \
|
|
{ K10, K11, K12, K13 }, \
|
|
{ K20, K21, K22, K23 }, \
|
|
{ K30, K31, K32, K33 }, \
|
|
{ K40, K41, K42, K43 } \
|
|
}
|
|
|
|
#endif
|