diff options
author | Drashna Jaelre <drashna@live.com> | 2021-08-19 21:21:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 21:21:00 -0700 |
commit | cc0ae9cc4ceaf3bdd5d33e1d410b319db617c4eb (patch) | |
tree | 0b2d0f29247a3b48bfa1b670ed1bb2d4aeb1c405 /keyboards/dumbpad/dumbpad.h | |
parent | b724a0dfd5782f81d52fa006466e607d7ba04c5e (diff) | |
download | qmk_firmware-cc0ae9cc4ceaf3bdd5d33e1d410b319db617c4eb.tar.gz qmk_firmware-cc0ae9cc4ceaf3bdd5d33e1d410b319db617c4eb.zip |
Revert "[Keyboard] Dumbpad VIA support added (#13512)"
Diffstat (limited to 'keyboards/dumbpad/dumbpad.h')
-rw-r--r-- | keyboards/dumbpad/dumbpad.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/keyboards/dumbpad/dumbpad.h b/keyboards/dumbpad/dumbpad.h deleted file mode 100644 index b7c7694e30..0000000000 --- a/keyboards/dumbpad/dumbpad.h +++ /dev/null @@ -1,39 +0,0 @@ -/* 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 }, \ -} |