summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/xiudi/xd75/keymaps/zigotica/config.h27
-rw-r--r--keyboards/xiudi/xd75/keymaps/zigotica/keymap.c63
-rw-r--r--keyboards/xiudi/xd75/keymaps/zigotica/rules.mk6
-rw-r--r--users/zigotica/rows.h23
-rw-r--r--users/zigotica/rules.mk2
-rw-r--r--users/zigotica/zigotica.h2
6 files changed, 118 insertions, 5 deletions
diff --git a/keyboards/xiudi/xd75/keymaps/zigotica/config.h b/keyboards/xiudi/xd75/keymaps/zigotica/config.h
new file mode 100644
index 0000000000..23e276cf6e
--- /dev/null
+++ b/keyboards/xiudi/xd75/keymaps/zigotica/config.h
@@ -0,0 +1,27 @@
1/* Copyright 2023 Sergi Meseguer <zigotica@gmail.com>
2
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program. If not, see <http://www.gnu.org/licenses/>.
15*/
16
17#pragma once
18
19// these should work better for homerow modifiers
20#define TAPPING_TERM 350
21#define PERMISSIVE_HOLD
22#define QUICK_TAP_TERM 0
23
24// needed to get same layers as split keyboards
25// see users/zigotica/zigotica.h
26#define ORTHOLINEAR_KEYBOARD
27
diff --git a/keyboards/xiudi/xd75/keymaps/zigotica/keymap.c b/keyboards/xiudi/xd75/keymaps/zigotica/keymap.c
new file mode 100644
index 0000000000..4133b57e72
--- /dev/null
+++ b/keyboards/xiudi/xd75/keymaps/zigotica/keymap.c
@@ -0,0 +1,63 @@
1/* Copyright 2023 Sergi Meseguer <zigotica@gmail.com>
2
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program. If not, see <http://www.gnu.org/licenses/>.
15*/
16
17#include "zigotica.h"
18
19#define LAYOUT_wrapper(...) LAYOUT(__VA_ARGS__)
20
21const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
22 [BASE] = LAYOUT_wrapper(
23 KC_ESC, ____NUM15, _BLANK_3, ____NUM60, KC_DEL,
24 KC_TAB, _STENAI_L1, _BLANK_3, _STENAI_R1, _______,
25 KC_EQL, _STENAI_L2, _BLANK_3, _STENAI_R2, KC_ENT,
26 KC_LSFT, _STENAI_L3, ____TARRS, _STENAI_R3, KC_RSFT,
27 ____LORTH, _STENAI_LT, ____BARRS, _STENAI_RT, ____RORTH
28 ),
29
30 [_NUM] = LAYOUT_wrapper(
31 QK_MAKE, _BLANK_ROW, _BLANK_3, _BLANK_ROW, _______,
32 _______, ____NUM_L1, _BLANK_3, ____NUM_R1, _______,
33 _______, ____NUM_L2, _BLANK_3, ____NUM_R2, _______,
34 _______, ____NUM_L3, _BLANK_3, ____NUM_R3, _______,
35 _BLANK_4, ____NUM_LT, _BLANK_3, ____NUM_RT, _BLANK_4
36 ),
37
38 [_NAV] = LAYOUT_wrapper(
39 QK_MAKE, _BLANK_ROW, _BLANK_3, _BLANK_ROW, _______,
40 _______, ____NAV_L1, _BLANK_3, ____NAV_R1, _______,
41 _______, ____NAV_L2, _BLANK_3, ____NAV_R2, _______,
42 _______, ____NAV_L3, _BLANK_3, ____NAV_R3, _______,
43 _BLANK_4, ____NAV_LT, _BLANK_3, ____NAV_RT, _BLANK_4
44 ),
45
46 [_SYM] = LAYOUT_wrapper(
47 QK_MAKE, _BLANK_ROW, _BLANK_3, _BLANK_ROW, _______,
48 _______, ____SYM_L1, _BLANK_3, ____SYM_R1, _______,
49 _______, ____SYM_L2, _BLANK_3, ____SYM_R2, _______,
50 _______, ____SYM_L3, _BLANK_3, ____SYM_R3, _______,
51 _BLANK_4, ____SYM_LT, _BLANK_3, ____SYM_RT, _BLANK_4
52 ),
53
54 [_FN] = LAYOUT_wrapper(
55 QK_MAKE, ____FN_15, _BLANK_3, ____FN_60, _______,
56 _______, ____FN_L1, _BLANK_3, ____FN_R1, _______,
57 _______, ____FN_L2, _BLANK_3, ____FN_R2, _______,
58 _______, ____FN_L3, _BLANK_3, ____FN_R3, _______,
59 _BLANK_4, ____FN_LT, _BLANK_3, ____FN_RT, _BLANK_4
60 ),
61};
62
63
diff --git a/keyboards/xiudi/xd75/keymaps/zigotica/rules.mk b/keyboards/xiudi/xd75/keymaps/zigotica/rules.mk
new file mode 100644
index 0000000000..c41232e8f9
--- /dev/null
+++ b/keyboards/xiudi/xd75/keymaps/zigotica/rules.mk
@@ -0,0 +1,6 @@
1OLED_SUPPORTED = no
2ENCODER_SUPPORTED = no
3
4MOUSEKEY_ENABLE = yes
5COMBO_ENABLE = yes
6TAP_DANCE_ENABLE = yes
diff --git a/users/zigotica/rows.h b/users/zigotica/rows.h
index 18f08ccb0b..575b32186e 100644
--- a/users/zigotica/rows.h
+++ b/users/zigotica/rows.h
@@ -15,8 +15,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
15#include "zigotica.h" 15#include "zigotica.h"
16 16
17// clang-format off 17// clang-format off
18#define _BLANK_ROW _______, _______, _______, _______, _______
19#define _BLANK_THUMB _______, _______ 18#define _BLANK_THUMB _______, _______
19#define _BLANK_3 _______, _______, _______
20#define _BLANK_4 _______, _______, _______, _______
21#define _BLANK_ROW _______, _______, _______, _______, _______
20 22
21/* 23/*
22 * STENAI Layer 24 * STENAI Layer
@@ -60,12 +62,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
60#define _COLEMAK_R3 KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH 62#define _COLEMAK_R3 KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH
61 63
62#define _QWERTY_L1 KC_Q, KC_W, KC_E, KC_R, KC_T 64#define _QWERTY_L1 KC_Q, KC_W, KC_E, KC_R, KC_T
63#define _QWERTY_L2 KC_A, KC_S, KC_D, KC_F, KC_G 65#define _QWERTY_L2 LALT_T(KC_A), LCTL_T(KC_S), LSFT_T(KC_D), LGUI_T(KC_F), KC_G
64#define _QWERTY_L3 KC_Z, KC_X, KC_C, KC_V, KC_B 66#define _QWERTY_L3 KC_Z, KC_X, KC_C, KC_V, KC_B
67#define _QWERTY_LT LT(_NUM, KC_TAB), LT(_NAV, KC_SPC)
65 68
66#define _QWERTY_R1 KC_Y, KC_U, KC_I, KC_O, KC_P 69#define _QWERTY_R1 KC_Y, KC_U, KC_I, KC_O, KC_P
67#define _QWERTY_R2 KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT 70#define _QWERTY_R2 KC_H, RGUI_T(KC_J), RSFT_T(KC_K), RCTL_T(KC_L), RALT_T(KC_SCLN)
68#define _QWERTY_R3 KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH 71#define _QWERTY_R3 KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH
72#define _QWERTY_RT LT(_SYM, KC_SPC), LT(_FN, KC_ENT)
69 73
70/* 74/*
71 * NUM Layer 75 * NUM Layer
@@ -191,4 +195,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
191#define ____FN_R2 _______, KC_F1, KC_F2, KC_F3, KC_F11 195#define ____FN_R2 _______, KC_F1, KC_F2, KC_F3, KC_F11
192#define ____FN_R3 _______, KC_F4, KC_F5, KC_F6, KC_F12 196#define ____FN_R3 _______, KC_F4, KC_F5, KC_F6, KC_F12
193#define ____FN_RT _BLANK_THUMB 197#define ____FN_RT _BLANK_THUMB
198
199
200// Ortho short rows
201#define ____NUM15 KC_1, KC_2, KC_3, KC_4, KC_5
202#define ____NUM60 KC_6, KC_7, KC_8, KC_9, KC_0
203#define ____FN_15 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5
204#define ____FN_60 KC_F6, KC_F7, KC_F8, KC_F9, KC_F10
205#define ____LMODS KC_LCTL, KC_LALT, KC_LGUI
206#define ____TARRS _______, KC_UP, _______
207#define ____BARRS KC_LEFT, KC_DOWN, KC_RIGHT
208#define ____LORTH ____LMODS, KC_MINS
209#define ____RORTH KC_BSPC, KC_SCLN, KC_BSLS, KC_SLSH
210
194// clang-format on 211// clang-format on
diff --git a/users/zigotica/rules.mk b/users/zigotica/rules.mk
index 019e6f6dda..93b0b5704d 100644
--- a/users/zigotica/rules.mk
+++ b/users/zigotica/rules.mk
@@ -5,7 +5,7 @@ ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
5endif 5endif
6 6
7ifeq ($(strip $(COMBO_ENABLE)), yes) 7ifeq ($(strip $(COMBO_ENABLE)), yes)
8 SRC += combos.c 8 INTROSPECTION_KEYMAP_C = combos.c
9endif 9endif
10 10
11ifeq ($(strip $(OLED_ENABLE)), yes) 11ifeq ($(strip $(OLED_ENABLE)), yes)
diff --git a/users/zigotica/zigotica.h b/users/zigotica/zigotica.h
index e85a04edbe..e7ac83e0dc 100644
--- a/users/zigotica/zigotica.h
+++ b/users/zigotica/zigotica.h
@@ -16,7 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
16 16
17#include "rows.h" 17#include "rows.h"
18 18
19#ifdef SPLIT_KEYBOARD 19#if defined(SPLIT_KEYBOARD) || defined(ORTHOLINEAR_KEYBOARD)
20enum userspace_layers { 20enum userspace_layers {
21 BASE = 0, 21 BASE = 0,
22 _NUM, 22 _NUM,