mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-03-13 15:04:11 +00:00
17 lines
381 B
C
17 lines
381 B
C
#ifndef LAUNCH_TEST_H
|
|
#define LAUNCH_TEST_H
|
|
|
|
#include "quantum.h"
|
|
|
|
#define ___ KC_NO
|
|
|
|
#define LAYOUT( \
|
|
K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, \
|
|
K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A \
|
|
) { \
|
|
{ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A }, \
|
|
{ K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A } \
|
|
}
|
|
|
|
#endif // LAUNCH_TEST_H
|