summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/jotpad16/jotpad16.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/jotpad16/jotpad16.h')
-rw-r--r--keyboards/handwired/jotpad16/jotpad16.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/handwired/jotpad16/jotpad16.h b/keyboards/handwired/jotpad16/jotpad16.h
new file mode 100644
index 000000000..012c9290d
--- /dev/null
+++ b/keyboards/handwired/jotpad16/jotpad16.h
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "quantum.h"
+
+// Used to create a keymap using only KC_ prefixed keys
+#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 } \
+}
+