[Keyboard] Add 2key2crawl (#6727)
* adding working 2key2crawl Adding working 2key2crawl files edited files in accordance with original PR comments * Changes Changes and updates * Update readme.md * Update config.h removed IS_COMMAND block that was missed in previous commit * Changes to vol/keymap.c Removed unneccesary function
This commit is contained in:
parent
969dd8be56
commit
0cbe1eb433
1
keyboards/2key2crawl/2key2crawl.c
Normal file
1
keyboards/2key2crawl/2key2crawl.c
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include "2key2crawl.h"
|
12
keyboards/2key2crawl/2key2crawl.h
Normal file
12
keyboards/2key2crawl/2key2crawl.h
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "quantum.h"
|
||||||
|
|
||||||
|
#define LAYOUT( \
|
||||||
|
K00, K01, K02, K03, K15, \
|
||||||
|
K10, K11, K12, K13, K14, K16 \
|
||||||
|
) { \
|
||||||
|
{ K00, K01, K02, K03, KC_NO, KC_NO, KC_NO }, \
|
||||||
|
{ K10, K11, K12, K13, K14, K15, K16 }, \
|
||||||
|
}
|
||||||
|
|
44
keyboards/2key2crawl/config.h
Normal file
44
keyboards/2key2crawl/config.h
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
#pragma once
|
||||||