20 lines
346 B
C
20 lines
346 B
C
// Copyright 2021 Ll3macorn (@ll3macorn)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#ifndef KB_H
|
|
#define KB_H
|
|
|
|
#include "quantum.h"
|
|
|
|
#define LAYOUT( \
|
|
K00, \
|
|
K10, K11, K12, \
|
|
K20, K21, K22, \
|
|
K30, K31, K32 \
|
|
) { \
|
|
{ K00, KC_NO, KC_NO }, \
|
|
{ K10, K11, K12 }, \
|
|
{ K20, K21, K22 }, \
|
|
{ K30, K31, K32 } \
|
|
}
|
|
|
|
#endif |