summaryrefslogtreecommitdiff
path: root/keyboards/winry/winry315/winry315.h
diff options
context:
space:
mode:
authorSergey Vlasov <sigprof@gmail.com>2022-03-08 06:45:30 +0300
committerGitHub <noreply@github.com>2022-03-07 19:45:30 -0800
commit249bc3a5c58607d71534cb538a8c76565557849a (patch)
tree254e1ba6731762341765bf1f862791c455164c5f /keyboards/winry/winry315/winry315.h
parent86966fce69369fe4f82efcab9540805b26632967 (diff)
[Keyboard] Add Winry315 keyboard (#15894)
Diffstat (limited to 'keyboards/winry/winry315/winry315.h')
-rw-r--r--keyboards/winry/winry315/winry315.h86
1 files changed, 86 insertions, 0 deletions
diff --git a/keyboards/winry/winry315/winry315.h b/keyboards/winry/winry315/winry315.h
new file mode 100644
index 0000000000..4796089003
--- /dev/null
+++ b/keyboards/winry/winry315/winry315.h
@@ -0,0 +1,86 @@
+// Copyright 2022 Sergey Vlasov (@sigprof)
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "quantum.h"
+
+// Supported orientations of the board. The enum values must match the layout
+// option values used by VIA.
+enum winry315_orientation {
+ WINRY315_ORIENTATION_TOP, // Encoders at the top side (default)
+ WINRY315_ORIENTATION_LEFT, // Encoders at the left side
+ WINRY315_ORIENTATION_RIGHT, // Encoders at the right side
+ WINRY315_ORIENTATION_BOTTOM // Encoders at the bottom side
+};
+
+// Set the orientation of the board (changes the RGB Matrix effect behavior to
+// match the new orientation).
+//
+// This function is intended to be used in the `via` keymap, where the board
+// orientation is configured dynamically using a VIA layout option. If you are
+// making a custom keymap for one specific orientation, it is better to set the
+// orientation in config.h (e.g., `#define WINRY315_DEFAULT_ORIENTATION
+// WINRY315_ORIENTATION_LEFT`) instead of adding custom code that calls this
+// function.
+void winry315_set_orientation(uint8_t orientation);
+
+// clang-format off
+
+// 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.
+//
+// For this board multiple layouts are defined to make it easier to use the
+// board in a sideways orientation; the actual PCB supports only a single
+// layout (LAYOUT_top).
+
+// Default layout: encoders at the top side (WINRY315_ORIENTATION_TOP).
+#define LAYOUT_top( \
+ k17, k15, k16, \
+ k00, k01, k02, k03, k04, \
+ k05, k06, k07, k08, k09, \
+ k10, k11, k12, k13, k14 \
+) { \
+ { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k10, k11, k12, k13, k14, k15, k16, k17, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO } \
+}
+
+// Encoders at the left side (WINRY315_ORIENTATION_LEFT).
+#define LAYOUT_left( \
+ k16, k04, k09, k14, \
+ k03, k08, k13, \
+ k15, k02, k07, k12, \
+ k01, k06, k11, \
+ k17, k00, k05, k10 \
+) { \
+ { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k10, k11, k12, k13, k14, k15, k16, k17, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO } \
+}
+
+// Encoders at the right side (WINRY315_ORIENTATION_RIGHT).
+#define LAYOUT_right( \
+ k10, k05, k00, k17, \
+ k11, k06, k01, \
+ k12, k07, k02, k15, \
+ k13, k08, k03, \
+ k14, k09, k04, k16 \
+) { \
+ { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k10, k11, k12, k13, k14, k15, k16, k17, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO } \
+}
+
+// Encoders at the bottom side (WINRY315_ORIENTATION_BOTTOM).
+#define LAYOUT_bottom( \
+ k14, k13, k12, k11, k10, \
+ k09, k08, k07, k06, k05, \
+ k04, k03, k02, k01, k00, \
+ k16, k15, k17 \
+) { \
+ { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k10, k11, k12, k13, k14, k15, k16, k17, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO } \
+}
+
+#define LAYOUT_all LAYOUT_top
+
+// clang-format on