diff options
Diffstat (limited to 'keyboards/crawlpad/crawlpad.h')
-rwxr-xr-x | keyboards/crawlpad/crawlpad.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/crawlpad/crawlpad.h b/keyboards/crawlpad/crawlpad.h new file mode 100755 index 000000000..74416c6b1 --- /dev/null +++ b/keyboards/crawlpad/crawlpad.h @@ -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
\ No newline at end of file |