1
0
Fork 0

[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:
Salicylic-acid3 2019-11-16 03:20:57 +09:00 committed by James Young
parent 1c9e450218
commit ad36bb37dd
9 changed files with 286 additions and 0 deletions

24
keyboards/nafuda/nafuda.h Normal file
View 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 } \
}