Add support for DOIO KB30-01 (#526)
* Lower OLED timeout to 1 minute * Fix direction of the large encoder knob * Support for DOIO KB30-01 * Reduce firmware size * Revert changes to base files * Override base OLED timeout * Move encoder map enable to rules.mk * Pin swap encoder 3 in vial. Large encoder otherwise acts reverse of how it is defined in the keymap.c file and the Vial configurator.
This commit is contained in:
parent
00f0a5993c
commit
277b47da98
22
keyboards/doio/kb30/keymaps/vial/config.h
Normal file
22
keyboards/doio/kb30/keymaps/vial/config.h
Normal file
@ -0,0 +1,22 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
#pragma once
|
||||
#define VIAL_TAP_DANCE_ENTRIES 16
|
||||
#define VIAL_COMBO_ENTRIES 16
|
||||
#define VIAL_KEY_OVERRIDE_ENTRIES 16
|
||||
|
||||
#define VIAL_KEYBOARD_UID {0xC3, 0xD7, 0xE9, 0x8D, 0x71, 0xBB, 0xA3, 0xEC}
|
||||
|
||||
#define VIAL_UNLOCK_COMBO_ROWS { 0, 0 }
|
||||
#define VIAL_UNLOCK_COMBO_COLS { 0, 3 }
|
||||
|
||||
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
|
||||
#define RGB_MATRIX_KEYPRESSES
|
||||
|
||||
#undef OLED_TIMEOUT
|
||||
#define OLED_TIMEOUT 60000
|
||||
|
||||
#undef ENCODERS_PAD_A
|
||||
#undef ENCODERS_PAD_B
|
||||
#define ENCODERS_PAD_A { B5, A1, A4 }
|
||||
#define ENCODERS_PAD_B { B6, A2, A3 }
|
||||
#define ENCODER_RESOLUTIONS { 1, 1, 4 }
|
60
keyboards/doio/kb30/keymaps/vial/keymap.c
Normal file
60
keyboards/doio/kb30/keymaps/vial/keymap.c
Normal file
@ -0,0 +1,60 @@
|
||||
/* Copyright 2022 DOIO
|
||||
* Copyright 2022 DOIO2022 <https://github.com/DOIO2022>
|
||||
*
|
||||
* 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
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT(
|
||||
KC_NUM, KC_PSLS, KC_PAST, KC_PMNS, KC_PSCR, KC_SCRL, KC_PAUSE,
|
||||
KC_P7, KC_P8, KC_P9, KC_PPLS, KC_INS, KC_HOME, KC_PGUP,
|
||||
KC_P4, KC_P5, KC_P6, KC_DEL, KC_END, KC_PGDN,
|
||||
KC_P1, KC_P2, KC_P3, LT(3,KC_PENT), KC_UP,
|
||||
KC_P0, KC_PDOT, KC_LEFT, KC_DOWN, KC_RGHT,
|
||||
KC_MPLY, TO(1), KC_TRNS),
|
||||
[1] = LAYOUT(
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, TO(2), KC_TRNS),
|
||||
[2] = LAYOUT(
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, TO(3), KC_TRNS),
|
||||
[3] = LAYOUT(
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_HUI, RGB_SAI, RGB_SPI,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_HUD, RGB_SAD, RGB_SPD,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_MOD,
|
||||
KC_TRNS, KC_TRNS, RGB_VAD, RGB_TOG, RGB_VAI,
|
||||
KC_TRNS, TO(0), KC_TRNS)
|
||||
};
|
||||
|
||||
|
||||
#if defined(ENCODER_MAP_ENABLE)
|
||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
||||
[0] = { ENCODER_CCW_CW(KC_MPRV, KC_MNXT), ENCODER_CCW_CW(KC_PGDN, KC_PGUP), ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
|
||||
[1] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS) },
|
||||
[2] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS) },
|
||||
[3] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS) },
|
||||
};
|
||||
#endif
|
9
keyboards/doio/kb30/keymaps/vial/rules.mk
Normal file
9
keyboards/doio/kb30/keymaps/vial/rules.mk
Normal file
@ -0,0 +1,9 @@
|
||||
VIA_ENABLE = yes
|
||||
VIAL_ENABLE = yes
|
||||
|
||||
LTO_ENABLE = yes
|
||||
|
||||
ENCODER_ENABLE = yes
|
||||
ENCODER_MAP_ENABLE = yes
|
||||
|
||||
VIALRGB_ENABLE = yes
|
101
keyboards/doio/kb30/keymaps/vial/vial.json
Normal file
101
keyboards/doio/kb30/keymaps/vial/vial.json
Normal file
@ -0,0 +1,101 @@
|
||||
{
|
||||
"name": "KB30-01",
|
||||
"vendorId": "0xD010",
|
||||
"productId": "0x3001",
|
||||
"lighting": "vialrgb",
|
||||
"matrix": {
|
||||
"rows": 6,
|
||||
"cols": 7
|
||||
},
|
||||
"layouts": {
|
||||
"keymap": [
|
||||
[
|
||||
"0,0",
|
||||
"0,1",
|
||||
"0,2",
|
||||
"0,3",
|
||||
{
|
||||
"x": 0.25
|
||||
},
|
||||
"0,4",
|
||||
"0,5",
|
||||
"0,6"
|
||||
],
|
||||
[
|
||||
"1,0",
|
||||
"1,1",
|
||||
"1,2",
|
||||
{
|
||||
"h": 2
|
||||
},
|
||||
"1,3",
|
||||
{
|
||||
"x": 0.25
|
||||
},
|
||||
"1,4",
|
||||
"1,5",
|
||||
"1,6",
|
||||
{
|
||||
"x": 0.5
|
||||
},
|
||||
"0,0\n\n\n\n\n\n\n\n\ne",
|
||||
"0,1\n\n\n\n\n\n\n\n\ne",
|
||||
{
|
||||
"x": 0.75
|
||||
},
|
||||
"1,0\n\n\n\n\n\n\n\n\ne",
|
||||
"1,1\n\n\n\n\n\n\n\n\ne"
|
||||
],
|
||||
[
|
||||
"2,0",
|
||||
"2,1",
|
||||
"2,2",
|
||||
{
|
||||
"x": 1.25
|
||||
},
|
||||
"2,3",
|
||||
"2,4",
|
||||
"2,5",
|
||||
{
|
||||
"x": 1
|
||||
},
|
||||
"5,4",
|
||||
{
|
||||
"x": 1.75
|
||||
},
|
||||
"5,5"
|
||||
],
|
||||
[
|
||||
"3,0",
|
||||
"3,1",
|
||||
"3,2",
|
||||
{
|
||||
"h": 2
|
||||
},
|
||||
"3,3",
|
||||
{
|
||||
"x": 1.25
|
||||
},
|
||||
"3,5"
|
||||
],
|
||||
[
|
||||
{
|
||||
"w": 2
|
||||
},
|
||||
"4,0",
|
||||
"4,1",
|
||||
{
|
||||
"x": 1.25
|
||||
},
|
||||
"4,2",
|
||||
"4,3",
|
||||
"4,4",
|
||||
{
|
||||
"x": 1.75
|
||||
},
|
||||
"2,0\n\n\n\n\n\n\n\n\ne",
|
||||
"2,1\n\n\n\n\n\n\n\n\ne"
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user