diff options
Diffstat (limited to 'keyboards/keebzdotnet/wazowski')
-rw-r--r-- | keyboards/keebzdotnet/wazowski/config.h | 17 | ||||
-rw-r--r-- | keyboards/keebzdotnet/wazowski/info.json | 33 | ||||
-rw-r--r-- | keyboards/keebzdotnet/wazowski/wazowski.c | 17 |
3 files changed, 19 insertions, 48 deletions
diff --git a/keyboards/keebzdotnet/wazowski/config.h b/keyboards/keebzdotnet/wazowski/config.h index be85b72768..a1746ba0a6 100644 --- a/keyboards/keebzdotnet/wazowski/config.h +++ b/keyboards/keebzdotnet/wazowski/config.h @@ -17,23 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #pragma once - -/* - * Keyboard Matrix Assignments - * - * Change this to how you wired your keyboard - * COLS: AVR pins used for columns, left to right - * ROWS: AVR pins used for rows, top to bottom - * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) - * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) - * - */ -#define MATRIX_ROW_PINS { F4, F5, F6 } -#define MATRIX_COL_PINS { F7, B1, B3, B2, B6 } - -/* COL2ROW, ROW2COL*/ -#define DIODE_DIRECTION COL2ROW - /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ #define LOCKING_SUPPORT_ENABLE /* Locking resynchronize hack */ diff --git a/keyboards/keebzdotnet/wazowski/info.json b/keyboards/keebzdotnet/wazowski/info.json index c5884b6402..f993b81f2f 100644 --- a/keyboards/keebzdotnet/wazowski/info.json +++ b/keyboards/keebzdotnet/wazowski/info.json @@ -8,25 +8,30 @@ "pid": "0x53FC", "device_version": "0.0.1" }, + "matrix_pins": { + "cols": ["F7", "B1", "B3", "B2", "B6"], + "rows": ["F4", "F5", "F6"] + }, + "diode_direction": "COL2ROW", "processor": "atmega32u4", "bootloader": "atmel-dfu", "layouts": { "LAYOUT": { "layout": [ - {"label":"k01", "x":1, "y":1}, - {"label":"k04", "x":3, "y":2}, - {"label":"k06", "x":4, "y":2}, - {"label":"k08", "x":5, "y":2}, - {"label":"k12", "x":7, "y":3}, - {"label":"k00", "x":0, "y":3}, - {"label":"k03", "x":2, "y":3}, - {"label":"k07", "x":4, "y":3}, - {"label":"k09", "x":5, "y":3}, - {"label":"k10", "x":6, "y":2}, - {"label":"k02", "x":1, "y":4}, - {"label":"k05", "x":3, "y":4}, - {"label":"k11", "x":7, "y":1}, - {"label":"k13", "x":8, "y":2} + {"x":1, "y":0}, + {"x":3, "y":1}, + {"x":4, "y":1}, + {"x":5, "y":1}, + {"x":7, "y":2}, + {"x":0, "y":2}, + {"x":2, "y":2}, + {"x":4, "y":2}, + {"x":5, "y":2}, + {"x":6, "y":1}, + {"x":1, "y":3}, + {"x":3, "y":3}, + {"x":7, "y":0}, + {"x":8, "y":1} ] } } diff --git a/keyboards/keebzdotnet/wazowski/wazowski.c b/keyboards/keebzdotnet/wazowski/wazowski.c deleted file mode 100644 index d4d6119ae5..0000000000 --- a/keyboards/keebzdotnet/wazowski/wazowski.c +++ /dev/null @@ -1,17 +0,0 @@ -/* Copyright 2020 keebzdotnet - * - * 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/>. - */ - -#include "wazowski.h" |