qmk_firmware/keyboards/system76/launch_test/launch_test.h
2020-09-29 10:15:54 -06:00

20 lines
443 B
C

#ifndef LAUNCH_TEST_H
#define LAUNCH_TEST_H
#include "quantum.h"
//TODO: determine this automatically
#define MATRIX_LAYERS 1
#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