1
0
Fork 0

Add Crawlpad 2017 files.

This commit is contained in:
Cole Markham 2017-12-04 09:28:19 -06:00 committed by Jack Humbert
parent 53b043d4ef
commit 6fddb31c4c
7 changed files with 262 additions and 0 deletions

18
keyboards/crawlpad/crawlpad.h Executable file
View file

@ -0,0 +1,18 @@
#ifndef KB_H
#define KB_H
#include "quantum.h"
#define KEYMAP( \
K00, K01, K02, K03, \
K10, K11, K12, K13, \
K20, K21, K22, K23, \
K30, K31, K32, K33 \
) { \
{ K00, K01, K02, K03 }, \
{ K10, K11, K12, K13 }, \
{ K20, K21, K22, K23 }, \
{ K30, K31, K32, K33 } \
}
#endif