1
0
Fork 0
This commit is contained in:
jack 2022-10-26 22:24:13 -06:00 committed by GitHub
parent dfef313587
commit fb8cfe43a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 45 additions and 179 deletions

View file

@ -19,8 +19,27 @@
#include "quantum.h"
#if defined(KEYBOARD_doio_kb16_rev1)
#include "rev1.h"
#elif defined(KEYBOARD_doio_kb16_rev2)
#include "rev2.h"
#endif
#define XXX KC_NO
/* ┌───┬───┬───┬───┐ ┌───┐ ┌───┐
* 00 01 02 03 04 14
*
* 10 11 12 13
*
* 20 21 22 23
* 24
* 30 31 32 33
*
*/
#define LAYOUT( \
K00, K01, K02, K03, K04, \
K10, K11, K12, K13, K14, \
K20, K21, K22, K23, K24, \
K30, K31, K32, K33 \
) { \
{ K00, K01, K02, K03, K04 }, \
{ K10, K11, K12, K13, K14 }, \
{ K20, K21, K22, K23, K24 }, \
{ K30, K31, K32, K33, XXX } \
}