diff options
author | jfescobar18 <81986725+jfescobar18@users.noreply.github.com> | 2021-08-19 12:39:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 10:39:30 -0700 |
commit | 425e1e665dc3c114fc42878f2b6a9d3225e5e6b5 (patch) | |
tree | 3cc7e9a58c86d3729c7d619a8e0a63d19f4bf462 /keyboards/dumbpad/dumbpad.h | |
parent | 3b4c35da6b476c8777c3b492179d30260ffbf895 (diff) | |
download | qmk_firmware-425e1e665dc3c114fc42878f2b6a9d3225e5e6b5.tar.gz qmk_firmware-425e1e665dc3c114fc42878f2b6a9d3225e5e6b5.zip |
[Keyboard] Dumbpad VIA support added (#13512)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/dumbpad/dumbpad.h')
-rw-r--r-- | keyboards/dumbpad/dumbpad.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/keyboards/dumbpad/dumbpad.h b/keyboards/dumbpad/dumbpad.h new file mode 100644 index 0000000000..b7c7694e30 --- /dev/null +++ b/keyboards/dumbpad/dumbpad.h @@ -0,0 +1,39 @@ +/* Copyright 2019 Chip + * + * 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 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( \ + k01, k02, k03, k04, \ + k11, k12, k13, k14, \ + k21, k22, k23, k24, \ + k30, k31, k32, k33, k34 \ +) \ +{ \ + { KC_NO, k01, k02, k03, k04 }, \ + { KC_NO, k11, k12, k13, k14 }, \ + { KC_NO, k21, k22, k23, k24 }, \ + { k30, k31, k32, k33, k34 }, \ +} |