summaryrefslogtreecommitdiffstats
path: root/keyboards/sweet16/sweet16.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/sweet16/sweet16.h')
-rw-r--r--keyboards/sweet16/sweet16.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/sweet16/sweet16.h b/keyboards/sweet16/sweet16.h
new file mode 100644
index 000000000..23d411a89
--- /dev/null
+++ b/keyboards/sweet16/sweet16.h
@@ -0,0 +1,30 @@
+#ifndef KB_H
+#define KB_H
+
+#include "quantum.h"
+
+#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 } \
+}
+
+#define LAYOUT_numpad_4x4( \
+ K00, K01, K02, K03, \
+ K10, K11, K12, \
+ K20, K21, K22, K23, \
+ K31, K32 \
+) { \
+ { K00, K01, K02, K03 }, \
+ { K10, K11, K12, K13 }, \
+ { K20, K21, K22, K23 }, \
+ { K30, K31, K32, K33 } \
+}
+
+#endif \ No newline at end of file