Test mappings are for the backlight and the RGB lights. To compile copy the content of the folder into the qmk_firmware/keyboards/test9 directory and make test9 in the main qmk_firmware directory.
17 lines
239 B
C
17 lines
239 B
C
#ifndef NINEKEY_H
|
|
#define NINEKEY_H
|
|
|
|
#include "quantum.h"
|
|
|
|
#define LAYOUT( \
|
|
k00, k01, k02, \
|
|
k10, k11, k12, \
|
|
k20, k21, k22 \
|
|
) \
|
|
{ \
|
|
{ k00, k01, k02 }, \
|
|
{ k10, k11, k12 }, \
|
|
{ k20, k21, k22 } \
|
|
}
|
|
|
|
#endif
|