summaryrefslogtreecommitdiffstats
path: root/keyboards/z34
diff options
context:
space:
mode:
authorlokher <lokher@gmail.com>2022-09-13 11:24:05 +0800
committerlokher <lokher@gmail.com>2022-09-13 11:24:05 +0800
commit9581289745736ce068a1040f44cec37a2ca8830d (patch)
tree24f644715a5fd6cc4d804d9604fb094307808b1b /keyboards/z34
parentfe13cedf8c09fa34d5cec4e4c624738095176625 (diff)
Remove non-Keychron keyboards
Diffstat (limited to 'keyboards/z34')
-rw-r--r--keyboards/z34/config.h57
-rw-r--r--keyboards/z34/info.json58
-rw-r--r--keyboards/z34/keymaps/default/config.h22
-rw-r--r--keyboards/z34/keymaps/default/keymap.c77
-rw-r--r--keyboards/z34/keymaps/default/readme.md3
-rw-r--r--keyboards/z34/keymaps/default/rules.mk3
-rw-r--r--keyboards/z34/keymaps/zigotica/config.h28
-rw-r--r--keyboards/z34/keymaps/zigotica/keymap.c57
-rw-r--r--keyboards/z34/keymaps/zigotica/rules.mk7
-rw-r--r--keyboards/z34/readme.md3
-rw-r--r--keyboards/z34/rules.mk25
-rw-r--r--keyboards/z34/z34.c17
-rw-r--r--keyboards/z34/z34.h39
13 files changed, 0 insertions, 396 deletions
diff --git a/keyboards/z34/config.h b/keyboards/z34/config.h
deleted file mode 100644
index f63b2771fc..0000000000
--- a/keyboards/z34/config.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/* Copyright 2020 Sergi Meseguer <zigotica@gmail.com>
-
-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 "config_common.h"
-
-/* key matrix size */
-#define MATRIX_ROWS 8
-#define MATRIX_COLS 5
-
-/*Keyboard Matrix Assignments */
-
-#define DIRECT_PINS { \
- { C6, F7, F6, F5, F4 }, \
- { D7, B6, B2, B3, B1 }, \
- { E6, D4, D0, D1, D3 }, \
- { B4, B5, NO_PIN, NO_PIN, NO_PIN } \
-}
-
-#define DIRECT_PINS_RIGHT { \
- { F4, F5, F6, F7, C6 }, \
- { B1, B3, B2, B6, D7 }, \
- { D3, D1, D0, D4, E6 }, \
- { B5, B4, NO_PIN, NO_PIN, NO_PIN } \
-}
-
-
-/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
-#define DEBOUNCE 5
-
-/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
-#define LOCKING_SUPPORT_ENABLE
-/* Locking resynchronize hack */
-#define LOCKING_RESYNC_ENABLE
-
-/* Serial settings */
-#define USE_SERIAL
-/* serial.c configuration for split keyboard */
-#define SOFT_SERIAL_PIN D2
-
-// EE_HANDS MASTER_RIGHT MASTER_LEFT
-#define MASTER_RIGHT
-
diff --git a/keyboards/z34/info.json b/keyboards/z34/info.json
deleted file mode 100644
index f28ddf0e1c..0000000000
--- a/keyboards/z34/info.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- "keyboard_name": "z34",
- "manufacturer": "zigotica",
- "url": "https://github.com/zigotica/mechanical-keyboards/tree/main/z34",
- "maintainer": "@zigotica",
- "usb": {
- "vid": "0x7A74",
- "pid": "0x0002",
- "device_version": "0.0.1"
- },
- "layouts": {
- "LAYOUT": {
- "layout": [
- {"x": 0, "y": 0.93},
- {"x": 1, "y": 0.31},
- {"x": 2, "y": 0},
- {"x": 3, "y": 0.28},
- {"x": 4, "y": 0.42},
-
- {"x": 7, "y": 0.42},
- {"x": 8, "y": 0.28},
- {"x": 9, "y": 0},
- {"x": 10, "y": 0.31},
- {"x": 11, "y": 0.93},
-
- {"x": 0, "y": 1.93},
- {"x": 1, "y": 1.31},
- {"x": 2, "y": 1},
- {"x": 3, "y": 1.28},
- {"x": 4, "y": 1.42},
-
- {"x": 7, "y": 1.42},
- {"x": 8, "y": 1.28},
- {"x": 9, "y": 1},
- {"x": 10, "y": 1.31},
- {"x": 11, "y": 1.93},
-
- {"x": 0, "y": 2.93},
- {"x": 1, "y": 2.31},
- {"x": 2, "y": 2},
- {"x": 3, "y": 2.28},
- {"x": 4, "y": 2.42},
-
- {"x": 7, "y": 2.42},
- {"x": 8, "y": 2.28},
- {"x": 9, "y": 2},
- {"x": 10, "y": 2.31},
- {"x": 11, "y": 2.93},
-
- {"x": 3.5, "y": 3.5},
- {"x": 4.5, "y": 4},
-
- {"x": 6.5, "y": 4},
- {"x": 7.5, "y": 3.5}
- ]
- }
- }
-}
diff --git a/keyboards/z34/keymaps/default/config.h b/keyboards/z34/keymaps/default/config.h
deleted file mode 100644
index ae9881d3ab..0000000000
--- a/keyboards/z34/keymaps/default/config.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Copyright 2020 Sergi Meseguer <zigotica@gmail.com>
-
-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 "config_common.h"
-
-// EE_HANDS MASTER_RIGHT MASTER_LEFT
-#define MASTER_RIGHT
diff --git a/keyboards/z34/keymaps/default/keymap.c b/keyboards/z34/keymaps/default/keymap.c
deleted file mode 100644
index 973d24eafb..0000000000
--- a/keyboards/z34/keymaps/default/keymap.c
+++ /dev/null
@@ -1,77 +0,0 @@
-/* Copyright 2020 Sergi Meseguer <zigotica@gmail.com>
-
-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 QMK_KEYBOARD_H
-
-enum layers {
- BASE = 0
-};
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-/*
- * Base Layer: BASE
- *
- * ,---------------------------------------. ,---------------------------------------.
- * | | | | | | | | | | | |
- * | Q | W | E | R | T | | Y | U | I | O | P |
- * | | | | | | | | | | | |
- * |-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------|
- * | | | | | | | | | | | |
- * | A | S | D | F | G | | H | J | K | L | ' |
- * | | | | | | | | | | | |
- * |-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------|
- * | | | | | | | | | | | |
- * | Z | X | C | V | B | | N | M | , | . | / |
- * | | | | | | | | | | | |
- * `-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------.
- * | | | | | |
- * | ESC | SPC | | ENTER | BSPC |
- * | | | | | |
- * `---------------' `---------------'
- *
- */
- [BASE] = LAYOUT(
- KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
- KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOT,
- KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH,
- KC_ESC, KC_SPC, KC_ENT, KC_BSPC
- ),
-
-/*
- * TEMPLATE
- *
- * ,---------------------------------------. ,---------------------------------------.
- * | | | | | | | | | | | |
- * | | | | | | | | | | | |
- * | | | | | | | | | | | |
- * |-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------|
- * | | | | | | | | | | | |
- * | | | | | | | | | | | |
- * | | | | | | | | | | | |
- * |-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------|
- * | | | | | | | | | | | |
- * | | | | | | | | | | | |
- * | | | | | | | | | | | |
- * `-------+-------+-------+-------+-------| |-------+-------+-------+-------+-------.
- * | | | | | |
- * | | | | | |
- * | | | | | |
- * `---------------' `---------------'
- *
- */
-
-};
-
diff --git a/keyboards/z34/keymaps/default/readme.md b/keyboards/z34/keymaps/default/readme.md
deleted file mode 100644
index c6a0115573..0000000000
--- a/keyboards/z34/keymaps/default/readme.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Default z34 Layout
-
-This is the default QWERTY layout that comes flashed on every z34.
diff --git a/keyboards/z34/keymaps/default/rules.mk b/keyboards/z34/keymaps/default/rules.mk
deleted file mode 100644
index 827811a362..0000000000
--- a/keyboards/z34/keymaps/default/rules.mk
+++ /dev/null
@@ -1,3 +0,0 @@
-# There are no extra pins, so we make sure to disable OLED and Encoders
-OLED_SUPPORTED = no
-ENCODER_SUPPORTED = no
diff --git a/keyboards/z34/keymaps/zigotica/config.h b/keyboards/z34/keymaps/zigotica/config.h
deleted file mode 100644
index 1b223cb71d..0000000000
--- a/keyboards/z34/keymaps/zigotica/config.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Copyright 2020 Sergi Meseguer <zigotica@gmail.com>
-
-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 "config_common.h"
-
-#define MASTER_RIGHT
-
-// these should work better for homerow modifiers
-#define TAPPING_TERM 350
-#define PERMISSIVE_HOLD
-#define IGNORE_MOD_TAP_INTERRUPT
-#define TAPPING_FORCE_HOLD
-
diff --git a/keyboards/z34/keymaps/zigotica/keymap.c b/keyboards/z34/keymaps/zigotica/keymap.c
deleted file mode 100644
index 88c6a3db1b..0000000000
--- a/keyboards/z34/keymaps/zigotica/keymap.c
+++ /dev/null
@@ -1,57 +0,0 @@
-/* Copyright 2020 Sergi Meseguer <zigotica@gmail.com>
-
-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 "zigotica.h"
-
-#define LAYOUT_wrapper(...) LAYOUT(__VA_ARGS__)
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [BASE] = LAYOUT_wrapper(
- _STENAI_L1, _STENAI_R1,
- _STENAI_L2, _STENAI_R2,
- _STENAI_L3, _STENAI_R3,
- _STENAI_LT, _STENAI_RT
- ),
-
- [_NUM] = LAYOUT_wrapper(
- ____NUM_L1, ____NUM_R1,
- ____NUM_L2, ____NUM_R2,
- ____NUM_L3, ____NUM_R3,
- ____NUM_LT, ____NUM_RT
- ),
-
- [_NAV] = LAYOUT_wrapper(
- ____NAV_L1, ____NAV_R1,
- ____NAV_L2, ____NAV_R2,
- ____NAV_L3, ____NAV_R3,
- ____NAV_LT, ____NAV_RT
- ),
-
- [_SYM] = LAYOUT_wrapper(
- ____SYM_L1, ____SYM_R1,
- ____SYM_L2, ____SYM_R2,
- ____SYM_L3, ____SYM_R3,
- ____SYM_LT, ____SYM_RT
- ),
-
- [_FN] = LAYOUT_wrapper(
- ____FN_L1, ____FN_R1,
- ____FN_L2, ____FN_R2,
- ____FN_L3, ____FN_R3,
- ____FN_LT, ____FN_RT
- ),
-};
-
diff --git a/keyboards/z34/keymaps/zigotica/rules.mk b/keyboards/z34/keymaps/zigotica/rules.mk
deleted file mode 100644
index 9abdfb40b4..0000000000
--- a/keyboards/z34/keymaps/zigotica/rules.mk
+++ /dev/null
@@ -1,7 +0,0 @@
-# There are no extra pins, so we make sure to disable OLED and Encoders
-OLED_SUPPORTED = no
-ENCODER_SUPPORTED = no
-
-MOUSEKEY_ENABLE = yes
-COMBO_ENABLE = yes
-TAP_DANCE_ENABLE = yes
diff --git a/keyboards/z34/readme.md b/keyboards/z34/readme.md
deleted file mode 100644
index 29bbf571a3..0000000000
--- a/keyboards/z34/readme.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# z34
-
-Firmware for [z34 split keyboard](https://github.com/zigotica/mechanical-keyboards/tree/main/z34) designed by @zigotica
diff --git a/keyboards/z34/rules.mk b/keyboards/z34/rules.mk
deleted file mode 100644
index 90c0d7b620..0000000000
--- a/keyboards/z34/rules.mk
+++ /dev/null
@@ -1,25 +0,0 @@
-# MCU name
-MCU = atmega32u4
-
-# Bootloader selection
-BOOTLOADER = caterina
-
-# Build Options
-# change yes to no to disable
-#
-BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
-MOUSEKEY_ENABLE = no # Mouse keys
-EXTRAKEY_ENABLE = yes # Audio control and System control
-CONSOLE_ENABLE = no # Console for debug
-COMMAND_ENABLE = no # Commands for debug and configuration
-NKRO_ENABLE = no # Enable N-Key Rollover
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
-AUDIO_ENABLE = no # Audio output
-SPLIT_KEYBOARD = yes # Split common
-LTO_ENABLE = yes # Enables Link Time Optimization (LTO) which reduces the compiled size
-
-# There are no extra pins, so we make sure to disable OLED and Encoders
-OLED_SUPPORTED = no # Enables the use of OLED displays
-ENCODER_SUPPORTED = no # Enables the use of encoders
-
diff --git a/keyboards/z34/z34.c b/keyboards/z34/z34.c
deleted file mode 100644
index 779562e630..0000000000
--- a/keyboards/z34/z34.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright 2020 Sergi Meseguer <zigotica@gmail.com>
- *
- * 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 "z34.h"
diff --git a/keyboards/z34/z34.h b/keyboards/z34/z34.h
deleted file mode 100644
index 3def2d4c2c..0000000000
--- a/keyboards/z34/z34.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/* Copyright 2020 Sergi Meseguer <zigotica@gmail.com>
- *
- * 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 "quantum.h"
-
-/* This a shortcut to help you visually see your layout */
-
-#define ___ KC_NO
-
-#define LAYOUT( \
- L05, L04, L03, L02, L01, R01, R02, R03, R04, R05, \
- L10, L09, L08, L07, L06, R06, R07, R08, R09, R10, \
- L15, L14, L13, L12, L11, R11, R12, R13, R14, R15, \
- L17, L16, R16, R17 \
- ) \
- { \
- { L05, L04, L03, L02, L01 }, \
- { L10, L09, L08, L07, L06 }, \
- { L15, L14, L13, L12, L11 }, \
- { L17, L16, ___, ___ , ___}, \
- { R01, R02, R03, R04, R05 }, \
- { R06, R07, R08, R09, R10 }, \
- { R11, R12, R13, R14, R15 }, \
- { R16, R17, ___, ___, ___ } \
- }
-