aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/reviung33/reviung33.h
diff options
context:
space:
mode:
authorgtips <51393966+gtips@users.noreply.github.com>2020-09-03 17:42:09 +0900
committerGitHub <noreply@github.com>2020-09-03 01:42:09 -0700
commitbad589ec59ef47e926dbc5b40e2802e3275d4105 (patch)
treeb2d8b8b2b024507c7b54da8335ba17287ca91690 /keyboards/reviung33/reviung33.h
parenteead2c6087d219b55349c11d9a4091a777b5700d (diff)
downloadfirmware-bad589ec59ef47e926dbc5b40e2802e3275d4105.tar.gz
firmware-bad589ec59ef47e926dbc5b40e2802e3275d4105.tar.bz2
firmware-bad589ec59ef47e926dbc5b40e2802e3275d4105.zip
[Keyboard] reviung33 (#10162)
* [Keyboard] Add keyboard Reviung41 * Modified files * deleted keyboards/reviung41/keymaps/default/config.h * modified keyboards/rebiung41/keymaps/default/keymap.c * modified keyboards/reviung41/readme.md * modified keyboards/reviung41/readme.md * modified keyboards/reviung41/readme.md * Update readme.md Change the image photo of readme.md. * [Keyboard] Add reviung61 * Update readme.md * fix keyboards/reviung61/ and add keymap default_rgb * fix keyboards/reviung61/info.json * fix keyboards/reviung61/info.json * remove keyboards/reviung61/keymaps/default/config.h * [keyboard] Fixed readme.md for reviung39 and 61. * [keyboard] add keyboard reviung33 * fix keyboards/reviung33/rules.mk * modified: keyboards/reving33/config.h * modified: keyboards/reving33/info.json * modified: keyboards/reving33/keymaps/default/keymap.c
Diffstat (limited to 'keyboards/reviung33/reviung33.h')
-rw-r--r--keyboards/reviung33/reviung33.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/keyboards/reviung33/reviung33.h b/keyboards/reviung33/reviung33.h
new file mode 100644
index 000000000..ea72a4aad
--- /dev/null
+++ b/keyboards/reviung33/reviung33.h
@@ -0,0 +1,40 @@
+/* Copyright 2020 gtips
+ *
+ * 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_reviung33( \
+ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, \
+ K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, \
+ K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, \
+ K30, K31, K32 \
+) \
+{ \
+ { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09 }, \
+ { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19 }, \
+ { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29 }, \
+ { K30, K31, K32, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO } \
+}