diff options
author | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
commit | dc90387ce7d8ba7b607d9c48540bf6d8b560f14d (patch) | |
tree | 4ccb8fa5886b66fa9d480edef74236c27f035e16 /keyboards/2key2crawl/2key2crawl.h |
Diffstat (limited to 'keyboards/2key2crawl/2key2crawl.h')
-rw-r--r-- | keyboards/2key2crawl/2key2crawl.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/keyboards/2key2crawl/2key2crawl.h b/keyboards/2key2crawl/2key2crawl.h new file mode 100644 index 000000000..6e8ee6420 --- /dev/null +++ b/keyboards/2key2crawl/2key2crawl.h | |||
@@ -0,0 +1,12 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "quantum.h" | ||
4 | |||
5 | #define LAYOUT( \ | ||
6 | K00, K01, K02, K03, K15, \ | ||
7 | K10, K11, K12, K13, K14, K16 \ | ||
8 | ) { \ | ||
9 | { K00, K01, K02, K03, KC_NO, KC_NO, KC_NO }, \ | ||
10 | { K10, K11, K12, K13, K14, K15, K16 }, \ | ||
11 | } | ||
12 | |||