qmk-keychron-q3-colemak-dh/keyboards/bongopad/kb.h
ll3macorn 51c8221cb7
adding bongopad (#85)
* h

* Update config.h

* Update config.h

k
2021-11-23 21:48:57 -05:00

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