summaryrefslogtreecommitdiffstats
path: root/keyboards/roadkit/roadkit.h
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2018-09-13 09:40:43 -0700
committerDrashna Jaelre <drashna@live.com>2018-09-13 09:40:43 -0700
commitce122c4981c71d33a85db94c787d5ec7a823acc6 (patch)
tree82693003e0e6f4191bd34362025e5ed5bb6ee9db /keyboards/roadkit/roadkit.h
parentcd3518b802071a915ff11659a32bf0a124687ea3 (diff)
Keyboard: Shuffle keyboards into thevankeyboards directory (#3895)
* move tv44 to thevankeyboards directory * move bananasplit to thevankeyboards * move roadkit to thevankeyboards directory * add a basic readme * update readmes to correct the make instructions and add more help text * rename tv44 to minivan as per Jack's suggestions * update readme * rename tv44 to minivan * update tv44 to minivan * change includes for tv44 to minivan * remove extra includes
Diffstat (limited to 'keyboards/roadkit/roadkit.h')
-rw-r--r--keyboards/roadkit/roadkit.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/keyboards/roadkit/roadkit.h b/keyboards/roadkit/roadkit.h
deleted file mode 100644
index 62cfabc5eb..0000000000
--- a/keyboards/roadkit/roadkit.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef ROADKIT_H
-#define ROADKIT_H
-
-#include "quantum.h"
-
-// This is a shortcut to help you visually see your layout.
-#define LAYOUT_numpad_4x4( \
- K00, K01, K02, K03, \
- K10, K11, K12, \
- K20, K21, K22, K23, \
- K30, K32 \
-) \
-{ \
- { K00, K01, K02, K03 }, \
- { K10, K11, K12, KC_NO }, \
- { K20, K21, K22, K23 }, \
- { K30, KC_NO, K32, KC_NO } \
-}
-
-#define LAYOUT_ortho_4x4( \
- 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