summaryrefslogtreecommitdiff
path: root/keyboards/mechwild/mokulua/mirrored/mirrored.h
diff options
context:
space:
mode:
authorKyle McCreery <mccreery.kyle@gmail.com>2022-07-17 19:55:32 -0400
committerGitHub <noreply@github.com>2022-07-17 16:55:32 -0700
commita444ccd27cbad978697bc20851b6a8402700331d (patch)
tree16ba3dd9f4fc1e04a2cb71867152f4ee043d805e /keyboards/mechwild/mokulua/mirrored/mirrored.h
parent931c7539d25ad23376e2501c3861bbb38ed58d72 (diff)
Re-refactor Mokulua (#17125)
* allowing the kt60 file to be modified so I can do things while waiting for it to be fixed upstream * initial commit for mokulua keyboard * Split the board into mirrored and standard layouts. * Prepping for PR. Silly keymap added. * prepped for PR * Apply suggestions from code review * Fixing firmware from the refactor that removed the mirrored layout. * Small tweaks using changes from refactor * Changed the name of the layouts back to match the original to resolve conflict in info.json * these files needed to be removed as well, they were added as a part of the refactor * info.json moveds to be different for each build * Another file had to be removed and the mirrored.c file changed to call mirrored.h instead of standard.h * fixing chibios ver * force deleting to revert * fixing chibios shit * Update keyboards/mechwild/mokulua/mirrored/mirrored.c * Update keyboards/mechwild/mokulua/standard/standard.c * Removing tabs and replacing with 4 spaces. Small style and formatting changes.
Diffstat (limited to 'keyboards/mechwild/mokulua/mirrored/mirrored.h')
-rw-r--r--keyboards/mechwild/mokulua/mirrored/mirrored.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/mechwild/mokulua/mirrored/mirrored.h b/keyboards/mechwild/mokulua/mirrored/mirrored.h
new file mode 100644
index 0000000000..66df5cdd6b
--- /dev/null
+++ b/keyboards/mechwild/mokulua/mirrored/mirrored.h
@@ -0,0 +1,31 @@
+// Copyright 2022 Kyle McCreery (@kylemccreery)
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "quantum.h"
+
+#define ___ KC_NO
+
+#define LAYOUT_mirrored( \
+ L00, L01, L02, L03, L04, L05, L06, R00, R01, R02, R03, R04, R05, R06, \
+ L10, L11, L12, L13, L14, L15, L16, R10, R11, R12, R13, R14, R15, R16, \
+ L20, L21, L22, L23, L24, L25, L26, R20, R21, R22, R23, R24, R25, R26, \
+ L30, L31, L32, L33, L34, L35, L36, L37, R30, R31, R32, R33, R34, R35, R36, R37, \
+ L40, L41, L42, L43, L44, L45, L46, R40, R41, R42, R43, R44, R45, R46 \
+) { \
+ { L00, L01, L02, L03, L04, L05 }, \
+ { L10, L11, L12, L13, L14, L15 }, \
+ { L20, L21, L22, L23, L24, L25 }, \
+ { L30, L31, L32, L33, L34, L35 }, \
+ { L40, L41, L42, L43, L44, L45 }, \
+ { L46, L36, L37, L26, L16, L06 }, \
+ { R06, R05, R04, R03, R02, R01 }, \
+ { R16, R15, R14, R13, R12, R11 }, \
+ { R26, R25, R24, R23, R22, R21 }, \
+ { R37, R36, R35, R34, R33, R32 }, \
+ { R46, R45, R44, R43, R42, R41 }, \
+ { R40, R31, R30, R20, R10, R00 } \
+}
+
+#define LAYOUT LAYOUT_mirrored \ No newline at end of file