[Keyboard] Add keyboard Nafuda (#7367)
* [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
This commit is contained in:
parent
1c9e450218
commit
ad36bb37dd
9 changed files with 286 additions and 0 deletions
24
keyboards/nafuda/nafuda.h
Normal file
24
keyboards/nafuda/nafuda.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#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 } \
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue