diff options
author | peepeetee <43021794+peepeetee@users.noreply.github.com> | 2022-01-11 08:57:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-10 16:57:20 -0800 |
commit | 34602f4b25f24d3238c8e76fe7d65dc8b69bf9c8 (patch) | |
tree | de491a0db7e839955b7ebc8b60dbb5a4494a267d /keyboards/reviung/reviung53/reviung53.h | |
parent | 2b212cf692ecc70b587389112bca0a7668cef050 (diff) |
[Keyboard] move reviung keyboards to a directory (#15636)
Diffstat (limited to 'keyboards/reviung/reviung53/reviung53.h')
-rw-r--r-- | keyboards/reviung/reviung53/reviung53.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/reviung/reviung53/reviung53.h b/keyboards/reviung/reviung53/reviung53.h new file mode 100644 index 0000000000..89ebc45c18 --- /dev/null +++ b/keyboards/reviung/reviung53/reviung53.h @@ -0,0 +1,30 @@ +// Copyright 2021 gtips (@gtips) +// SPDX-License-Identifier: GPL-2.0-or-later + +#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_reviung53( \ + K02, K03, K04, K05, K06, K07, K40, K41, K42, K43, \ + K10, K11, K12, K13, K14, K15, K16, K17, K44, K45, K46, K47, \ + K20, K21, K22, K23, K24, K25, K26, K27, K50, K51, K52, K53, \ + K30, K31, K32, K33, K34, K35, K36, K37, K54, K55, K56,\ + K60, K61, K62, K63, K64, K65, K66, K67 \ +) { \ + { KC_NO, KC_NO, K02, K03, K04, K05, K06, K07 }, \ + { K10, K11, K12, K13, K14, K15, K16, K17 }, \ + { K20, K21, K22, K23, K24, K25, K26, K27 }, \ + { K30, K31, K32, K33, K34, K35, K36, K37 }, \ + { K40, K41, K42, K43, K44, K45, K46, K47 }, \ + { K50, K51, K52, K53, K54, K55, K56, KC_NO }, \ + { K60, K61, K62, K63, K64, K65, K66, K67 } \ +} |