summaryrefslogtreecommitdiff
path: root/keyboards/kiwikey/kawii9/kawii9.h
diff options
context:
space:
mode:
authorkiwikey <75843996+kiwikey@users.noreply.github.com>2020-12-25 21:44:32 +0700
committerGitHub <noreply@github.com>2020-12-26 01:44:32 +1100
commit7ca4b619223260d17bcc0d065a02d1bbdce436b8 (patch)
treeb434f9bcac00cb61b93f173c90e0e9c3be73cc76 /keyboards/kiwikey/kawii9/kawii9.h
parentb7f640ca764b25e09bd0e60841bfd492bede036f (diff)
First commit of Kawii9 (#11201)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/kiwikey/kawii9/kawii9.h')
-rw-r--r--keyboards/kiwikey/kawii9/kawii9.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/keyboards/kiwikey/kawii9/kawii9.h b/keyboards/kiwikey/kawii9/kawii9.h
new file mode 100644
index 0000000000..b6fc36a575
--- /dev/null
+++ b/keyboards/kiwikey/kawii9/kawii9.h
@@ -0,0 +1,38 @@
+/* Copyright 2020 KiwiKey
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#pragma once
+
+#include "quantum.h"
+
+/* This is a shortcut to help you visually see your layout.
+ *
+ * The first section contains all of the arguments representing the physical
+ * layout of the board and position of the keys.
+ *
+ * The second converts the arguments into a two-dimensional array which
+ * represents the switch matrix.
+ */
+#define LAYOUT_ortho_3x3( \
+ k00, k01, k02, \
+ k10, k11, k12, \
+ k20, k21, k22 \
+) \
+{ \
+ { k00, k01, k02 }, \
+ { k10, k11, k12 }, \
+ { k20, k21, k22 } \
+}