diff options
author | J.Flanagan <jrfhoutx@comcast.net> | 2019-09-14 16:03:14 -0500 |
---|---|---|
committer | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2019-09-14 14:03:14 -0700 |
commit | 0cbe1eb433726f32885433835cd633c65199393a (patch) | |
tree | 89529dfcfcfcfc67e2135232fb17895bf4e19a58 /keyboards/2key2crawl/2key2crawl.h | |
parent | 969dd8be562ad8d52822673e065f5d9947eb809d (diff) | |
download | qmk_firmware-0cbe1eb433726f32885433835cd633c65199393a.tar.gz qmk_firmware-0cbe1eb433726f32885433835cd633c65199393a.zip |
[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
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 0000000000..6e8ee64208 --- /dev/null +++ b/keyboards/2key2crawl/2key2crawl.h @@ -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 }, \ +} + |