Port 'runner3680 5x7' (#496)

This commit is contained in:
Chiang, Yi-Yo 2023-07-23 01:07:56 +08:00 committed by GitHub
parent 2645e9d241
commit 79ed67ae2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 211 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
//#define USE_MATRIX_I2C
/* Select hand configuration, MASTER_LEFT is default */
// #define MASTER_RIGHT
// #define EE_HANDS
// Baseline VIAL configurations.
#define VIAL_KEYBOARD_UID {0xF9, 0x85, 0x99, 0x57, 0x97, 0xF0, 0x84, 0x44}
#define VIAL_UNLOCK_COMBO_ROWS { 0, 0 }
#define VIAL_UNLOCK_COMBO_COLS { 0, 1 }

View file

@ -0,0 +1,80 @@
#include QMK_KEYBOARD_H
#ifdef RGBLIGHT_ENABLE
//Following line allows macro to read current RGB settings
extern rgblight_config_t rgblight_config;
rgblight_config_t RGB_current_config;
#endif
enum layer_number {
_QWERTY = 0,
_ADJUST
};
enum custom_keycodes {
RGBRST = SAFE_RANGE,
};
// Fillers to make layering more clear
#define EISU LALT(KC_GRV)
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* QWERTY
* ,------------------------------------------------. ,------------------------------------------------.
* | F1 | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - | = |
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
* | F2 | Tab | Q | W | E | R | T | | Y | U | I | O | P | [ | ] |
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
* | F3 | Esc | A | S | D | F | G | | H | J | K | L | ; | " | Enter|
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
* | F4 | Shift| Z | X | C | V | B | | N | M | , | . | / | \ | Shift|
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
* | F5 | Ctrl | GUI | Alt | EISU | Del | Space| | Enter| Bksp | EISU | ESC |Adjust| Left | Down |
* `------------------------------------------------' `------------------------------------------------'
*/
[_QWERTY] = LAYOUT(
KC_F1, KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL,
KC_F2, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC,
KC_F3, KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
KC_F4, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_BSLS, KC_RSFT,
KC_F5, KC_LCTL, KC_LGUI, KC_LALT, EISU, KC_DEL, KC_SPC, KC_ENT, KC_BSPC, MO(_ADJUST), KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT
),
/* Adjust
* ,------------------------------------------------. ,------------------------------------------------.
* | | | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
* | | |RGBRST| QK_BOOT| | | | | | | | | | | |
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
* | | | TOG | HUI | SAI | VAI | | | | | | | | | |
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
* | | | MOD | HUD | SAD | VAD | | | | | | | | | |
* |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
* | | | | | | | | | | | | | | | |
* `------------------------------------------------' `------------------------------------------------'
*/
[_ADJUST] = LAYOUT(
_______, _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
_______, _______, RGBRST, QK_BOOT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, RGB_MOD, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
)
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case RGBRST:
#ifdef RGBLIGHT_ENABLE
if (record->event.pressed) {
eeconfig_update_rgblight_default();
rgblight_enable();
RGB_current_config = rgblight_config;
}
#endif
break;
}
return true;
}

View file

@ -0,0 +1,9 @@
# Baseline VIAL configurations.
VIA_ENABLE = yes
VIAL_ENABLE = yes
# Enable LTO to optimize firmware size.
LTO_ENABLE = yes
QMK_SETTINGS = yes
NKRO_ENABLE = yes

View file

@ -0,0 +1,106 @@
{
"lighting": "none",
"matrix": {
"rows": 10,
"cols": 7
},
"layouts": {
"keymap": [
[
"0,0",
"0,1",
"0,2",
"0,3",
"0,4",
"0,5",
"0,6",
{
"x": 2
},
"5,6",
"5,5",
"5,4",
"5,3",
"5,2",
"5,1",
"5,0"
],
[
"1,0",
"1,1",
"1,2",
"1,3",
"1,4",
"1,5",
"1,6",
{
"x": 2
},
"6,6",
"6,5",
"6,4",
"6,3",
"6,2",
"6,1",
"6,0"
],
[
"2,0",
"2,1",
"2,2",
"2,3",
"2,4",
"2,5",
"2,6",
{
"x": 2
},
"7,6",
"7,5",
"7,4",
"7,3",
"7,2",
"7,1",
"7,0"
],
[
"3,0",
"3,1",
"3,2",
"3,3",
"3,4",
"3,5",
"3,6",
{
"x": 2
},
"8,6",
"8,5",
"8,4",
"8,3",
"8,2",
"8,1",
"8,0"
],
[
"4,0",
"4,1",
"4,2",
"4,3",
"4,4",
"4,5",
"4,6",
{
"x": 2
},
"9,6",
"9,5",
"9,4",
"9,3",
"9,2",
"9,1",
"9,0"
]
]
}
}