forked from forks/qmk_firmware
ad36bb37dd
* [Keyboard] Add keyboard Nafuda Add Nafuda keyboard. A 7 keys keyboard. Salicylic-acid3 * Update keyboards/nafuda/info.json * Update keyboards/nafuda/readme.md * Update keyboards/nafuda/readme.md * Update keyboards/nafuda/nafuda.h * Update keyboards/nafuda/readme.md * Update keyboards/nafuda/rules.mk * Update keyboards/nafuda/rules.mk * Update keyboards/nafuda/rules.mk * Update keyboards/nafuda/rules.mk * info.json Update * Update keyboards/nafuda/rules.mk
25 lines
392 B
C
25 lines
392 B
C
#pragma once
|
|
|
|
#include "quantum.h"
|
|
|
|
/*
|
|
* ,-----------------.
|
|
* | | L01 | |
|
|
* |-----------------+
|
|
* | L10 | L11 | L12 |
|
|
* |-----------------+
|
|
* | L20 | L21 | L22 |
|
|
* |-----------------'
|
|
*/
|
|
|
|
#define LAYOUT( \
|
|
L01, \
|
|
L10, L11, L12, \
|
|
L20, L21, L22 \
|
|
) \
|
|
{ \
|
|
{KC_NO, L01,KC_NO }, \
|
|
{ L10, L11, L12 }, \
|
|
{ L20, L21, L22 } \
|
|
}
|