Merge branch 'qmk:master' into master

This commit is contained in:
Smartmmd 2024-06-22 16:20:47 +08:00 committed by GitHub
commit 03c64af184
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
142 changed files with 1260 additions and 642 deletions

View File

@ -40,7 +40,8 @@
"pattern": "^[0-9a-z_/\\-]+\\.json$"
},
"key_unit": {
"type": "number"
"type": "number",
"minimum": 0
},
"keyboard": {
"type": "string",

View File

@ -515,8 +515,8 @@
"minimum": 0
}
},
"x": {"$ref": "qmk.definitions.v1#/key_unit"},
"y": {"$ref": "qmk.definitions.v1#/key_unit"},
"x": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"y": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"flags": {"$ref": "qmk.definitions.v1#/unsigned_int_8"}
}
}
@ -601,8 +601,8 @@
"minimum": 0
}
},
"x": {"$ref": "qmk.definitions.v1#/key_unit"},
"y": {"$ref": "qmk.definitions.v1#/key_unit"},
"x": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"y": {"$ref": "qmk.definitions.v1#/unsigned_int"},
"flags": {"$ref": "qmk.definitions.v1#/unsigned_int_8"}
}
}

View File

@ -4,6 +4,7 @@
"/cli_dev_configuration": "/cli_configuration",
"/dynamic_macros": "/feature_dynamic_macros",
"/feature_common_shortcuts": "/feature_advanced_keycodes",
"/flashing_bootloadhid": "/flashing",
"/getting_started_build_tools": "/newbs_getting_started",
"/getting_started_getting_help": "/support",
"/glossary": "/reference_glossary",

View File

@ -64,13 +64,7 @@
"text": "Development Environments",
"items": [{ "text": "Docker Guide", "link": "/getting_started_docker" }]
},
{
"text": "Flashing",
"items": [
{ "text": "Flashing", "link": "/flashing" },
{ "text": "Flashing ATmega32A (ps2avrgb)", "link": "/flashing_bootloadhid" }
]
},
{ "text": "Flashing", "link": "/flashing" },
{
"text": "IDEs",
"items": [

View File

@ -105,7 +105,9 @@ enum my_keycodes {
Before opening a pull request, you can preview your changes if you have set up the development environment by running this command from the `qmk_firmware/` folder:
qmk docs
```
qmk docs
```
and navigating to `http://localhost:5173/`.

View File

@ -1007,9 +1007,9 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
HSV hsv = {0, 255, 255};
if (layer_state_is(layer_state, 2)) {
hsv = {130, 255, 255};
hsv = (HSV){130, 255, 255};
} else {
hsv = {30, 255, 255};
hsv = (HSV){30, 255, 255};
}
if (hsv.v > rgb_matrix_get_val()) {

View File

@ -1,74 +0,0 @@
# BootloadHID Flashing Instructions and Bootloader Information
ps2avr(GB) boards use an ATmega32A microcontroller and a different bootloader. It is not flashable using the regular QMK methods.
General flashing sequence:
1. Enter the bootloader using any of the following methods:
* Tap the `QK_BOOT` keycode (may not work on all devices)
* Hold the salt key while plugging the keyboard in (usually documented within keyboard readme)
2. Wait for the OS to detect the device
3. Flash a .hex file
4. Reset the device into application mode (may be done automatically)
## bootloadHID Flashing Target
::: tip
Using the QMK installation script, detailed [here](newbs_getting_started), the required bootloadHID tools should be automatically installed.
:::
To flash via the command line, use the target `:bootloadhid` by executing the following command:
```
make <keyboard>:<keymap>:bootloadhid
```
## GUI Flashing
### Windows
1. Download [HIDBootFlash](http://vusb.wikidot.com/project:hidbootflash).
2. Place your keyboard into reset.
3. Ensure the configured VendorID is `16c0` and ProductID is `05df`
4. Press the `Find Device` button and ensure that your keyboard is found.
5. Press the `Open .hex File` button and locate the `.hex` file you created.
6. Press the `Flash Device` button and wait for the process to complete.
## Command Line Flashing
1. Place your keyboard into reset.
2. Flash the board by typing `bootloadHID -r` followed by the path to your `.hex` file.
### Windows Manual Installation
For MSYS2:
1. Download the BootloadHID firmware package from https://www.obdev.at/downloads/vusb/bootloadHID.2012-12-08.tar.gz.
2. Extract contents using a compatible tool, for example 7-Zip.
3. Add to the MSYS path by copying `commandline/bootloadHID.exe` from the extracted archive to your MSYS2 installation, typically `C:\msys64\usr\bin`.
For native Windows flashing, the `bootloadHID.exe` can be used outside of the MSYS2 environment.
### Linux Manual Installation
1. Install libusb development dependency:
```
# This depends on OS - for Debian the following works
sudo apt-get install libusb-dev
```
2. Download the BootloadHID firmware package:
```
wget https://www.obdev.at/downloads/vusb/bootloadHID.2012-12-08.tar.gz -O - | tar -xz -C /tmp
```
3. Build the bootloadHID executable:
```
cd /tmp/bootloadHID.2012-12-08/commandline/
make
sudo cp bootloadHID /usr/local/bin
```
### MacOS Manual Installation
1. Install Homebrew by typing the following:
```
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```
2. Install the following packages:
```
brew install --HEAD https://raw.githubusercontent.com/robertgzr/homebrew-tap/master/bootloadhid.rb
```

View File

@ -15,7 +15,7 @@ Make example for this keyboard (after setting up your build environment):
make amag23:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make amag23:default:flash

View File

@ -8,7 +8,7 @@ Make example for this keyboard (after setting up your build environment):
make ares:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make ares:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make bfake:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make bfake:default:flash

View File

@ -35,9 +35,9 @@
},
"driver": "ws2812",
"layout": [
{"matrix": [0, 15], "x": 16.25, "y": 1, "flags": 4},
{"matrix": [0, 16], "x": 17.25, "y": 1, "flags": 4},
{"matrix": [0, 17], "x": 18.25, "y": 1, "flags": 4}
{"matrix": [0, 15], "x": 16, "y": 1, "flags": 4},
{"matrix": [0, 16], "x": 17, "y": 1, "flags": 4},
{"matrix": [0, 17], "x": 18, "y": 1, "flags": 4}
],
"led_count": 3,
"max_brightness": 255

View File

@ -0,0 +1,28 @@
// Copyright 2024 customMK
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
// FRAM configuration
#define EXTERNAL_EEPROM_SPI_SLAVE_SELECT_PIN B7
#define EXTERNAL_EEPROM_SPI_CLOCK_DIVISOR 4 // 48MHz / 4 = 12MHz; max supported by MB85R64 is 20MHz
// SPI configuration
#define SPI_DRIVER SPID1
#define SPI_SCK_PIN B3
#define SPI_MOSI_PIN B5
#define SPI_MISO_PIN B4
// Audio configuration
#define AUDIO_PIN B8
#define AUDIO_PWM_DRIVER PWMD4
#define AUDIO_PWM_CHANNEL 3
#define AUDIO_PWM_PAL_MODE 2
#define AUDIO_STATE_TIMER GPTD5
#define AUDIO_INIT_DELAY
#define WS2812_PWM_DRIVER PWMD1
#define WS2812_PWM_CHANNEL 3
#define WS2812_PWM_PAL_MODE 1
#define WS2812_DMA_STREAM STM32_DMA2_STREAM5
#define WS2812_DMA_CHANNEL 6

View File

@ -0,0 +1,30 @@
/* Copyright 2024 customMK
*
* 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
#define HAL_USE_PWM TRUE
#define HAL_USE_SPI TRUE
#define SPI_SELECT_MODE SPI_SELECT_MODE_PAD
#define SERIAL_BUFFERS_SIZE 256
// This enables interrupt-driven mode
#define SPI_USE_WAIT TRUE
#include_next <halconf.h>

View File

@ -0,0 +1,189 @@
{
"manufacturer": "customMK",
"keyboard_name": "ErgoStrafer RGB",
"maintainer": "customMK",
"bootloader": "stm32-dfu",
"diode_direction": "ROW2COL",
"dynamic_keymap": {
"layer_count": 32
},
"eeprom": {
"driver": "spi"
},
"encoder": {
"rotary": [
{"pin_a": "A8", "pin_b": "A4", "resolution": 2},
{"pin_a": "B12", "pin_b": "B14", "resolution": 2},
{"pin_a": "B15", "pin_b": "A15", "resolution": 2}
]
},
"features": {
"audio": true,
"bootmagic": true,
"encoder": true,
"extrakey": true,
"mousekey": true,
"nkro": true,
"rgb_matrix": true
},
"matrix_pins": {
"cols": ["B0", "A1", "A2", "A3", "A6", "B6", "B10"],
"rows": ["C13", "C14", "C15", "B1", "A7", "A5"]
},
"processor": "STM32F411",
"qmk": {
"tap_keycode_delay": 10
},
"rgb_matrix": {
"animations": {
"alphas_mods": true,
"band_pinwheel_sat": true,
"band_pinwheel_val": true,
"band_sat": true,
"band_spiral_sat": true,
"band_spiral_val": true,
"band_val": true,
"breathing": true,
"cycle_all": true,
"cycle_left_right": true,
"cycle_out_in": true,
"cycle_out_in_dual": true,
"cycle_pinwheel": true,
"cycle_spiral": true,
"cycle_up_down": true,
"digital_rain": true,
"dual_beacon": true,
"gradient_left_right": true,
"gradient_up_down": true,
"hue_breathing": true,
"hue_pendulum": true,
"hue_wave": true,
"jellybean_raindrops": true,
"multisplash": true,
"pixel_flow": true,
"pixel_fractal": true,
"pixel_rain": true,
"rainbow_beacon": true,
"rainbow_moving_chevron": true,
"rainbow_pinwheels": true,
"raindrops": true,
"solid_multisplash": true,
"solid_reactive": true,
"solid_reactive_cross": true,
"solid_reactive_multicross": true,
"solid_reactive_multinexus": true,
"solid_reactive_multiwide": true,
"solid_reactive_nexus": true,
"solid_reactive_simple": true,
"solid_reactive_wide": true,
"solid_splash": true,
"splash": true,
"typing_heatmap": true
},
"center_point": [112, 112],
"driver": "ws2812",
"layout": [
{"matrix": [0, 1], "x": 32, "y": 45, "flags": 4},
{"matrix": [0, 2], "x": 57, "y": 40, "flags": 4},
{"matrix": [0, 3], "x": 83, "y": 38, "flags": 4},
{"matrix": [0, 4], "x": 109, "y": 40, "flags": 4},
{"matrix": [0, 5], "x": 134, "y": 45, "flags": 4},
{"x": 136, "y": 18, "flags": 4},
{"matrix": [0, 0], "x": 167, "y": 11, "flags": 4},
{"matrix": [1, 0], "x": 170, "y": 33, "flags": 4},
{"matrix": [2, 0], "x": 174, "y": 54, "flags": 4},
{"x": 195, "y": 57, "flags": 4},
{"x": 211, "y": 81, "flags": 4},
{"x": 193, "y": 90, "flags": 4},
{"matrix": [0, 6], "x": 171, "y": 90, "flags": 4},
{"matrix": [2, 5], "x": 143, "y": 90, "flags": 4},
{"matrix": [1, 5], "x": 140, "y": 67, "flags": 4},
{"matrix": [1, 4], "x": 118, "y": 61, "flags": 4},
{"matrix": [2, 3], "x": 95, "y": 58, "flags": 4},
{"matrix": [1, 3], "x": 71, "y": 58, "flags": 4},
{"matrix": [1, 2], "x": 48, "y": 61, "flags": 4},
{"matrix": [1, 1], "x": 26, "y": 67, "flags": 4},
{"matrix": [3, 0], "x": 0, "y": 90, "flags": 4},
{"matrix": [2, 1], "x": 23, "y": 90, "flags": 4},
{"matrix": [2, 2], "x": 52, "y": 87, "flags": 4},
{"matrix": [3, 3], "x": 83, "y": 85, "flags": 4},
{"matrix": [2, 4], "x": 114, "y": 87, "flags": 4},
{"matrix": [3, 5], "x": 139, "y": 113, "flags": 4},
{"matrix": [1, 6], "x": 167, "y": 114, "flags": 4},
{"x": 207, "y": 112, "flags": 4},
{"matrix": [5, 6], "x": 224, "y": 146, "flags": 4},
{"matrix": [3, 6], "x": 184, "y": 147, "flags": 4},
{"matrix": [2, 6], "x": 156, "y": 147, "flags": 4},
{"matrix": [4, 5], "x": 127, "y": 135, "flags": 4},
{"matrix": [3, 4], "x": 111, "y": 112, "flags": 4},
{"matrix": [4, 3], "x": 83, "y": 112, "flags": 4},
{"matrix": [3, 2], "x": 55, "y": 112, "flags": 4},
{"matrix": [3, 1], "x": 20, "y": 114, "flags": 4},
{"matrix": [4, 1], "x": 15, "y": 138, "flags": 4},
{"matrix": [5, 1], "x": 14, "y": 162, "flags": 4},
{"matrix": [4, 2], "x": 52, "y": 137, "flags": 4},
{"matrix": [5, 3], "x": 83, "y": 139, "flags": 4},
{"x": 83, "y": 164, "flags": 4},
{"x": 104, "y": 144, "flags": 4},
{"matrix": [5, 5], "x": 121, "y": 173, "flags": 4},
{"matrix": [4, 6], "x": 167, "y": 173, "flags": 4}
],
"max_brightness": 120,
"sat_steps": 8,
"speed_steps": 10,
"val_steps": 8
},
"url": "https://shop.custommk.com/collections/ergostrafer/products/ergostrafer",
"usb": {
"device_version": "1.0.0",
"pid": "0xFAB9",
"vid": "0xF35B"
},
"ws2812": {
"driver": "pwm",
"pin": "A10"
},
"layouts": {
"LAYOUT": {
"layout": [
{"label": "F9", "matrix": [0, 0], "x": 7.5, "y": 0},
{"label": "7", "matrix": [0, 1], "x": 1.5, "y": 1.25},
{"label": "8", "matrix": [0, 2], "x": 2.5, "y": 1.25},
{"label": "9", "matrix": [0, 3], "x": 3.5, "y": 1.25},
{"label": "0", "matrix": [0, 4], "x": 4.5, "y": 1.25},
{"label": "-", "matrix": [0, 5], "x": 5.5, "y": 1.25},
{"label": "T", "matrix": [0, 6], "x": 7.25, "y": 3.25, "w": 1.5},
{"label": "PrtScr", "matrix": [1, 0], "x": 7.5, "y": 1},
{"label": "1", "matrix": [1, 1], "x": 1, "y": 2.25},
{"label": "2", "matrix": [1, 2], "x": 2, "y": 2.25},
{"label": "3", "matrix": [1, 3], "x": 3, "y": 2.25},
{"label": "5", "matrix": [1, 4], "x": 5, "y": 2.25},
{"label": "6", "matrix": [1, 5], "x": 6, "y": 2.25},
{"label": "G", "matrix": [1, 6], "x": 7.25, "y": 4.25, "w": 1.5},
{"label": "F5", "matrix": [2, 0], "x": 7.5, "y": 2},
{"label": "Tab", "matrix": [2, 1], "x": 1, "y": 3.5},
{"label": "Q", "matrix": [2, 2], "x": 2.5, "y": 3.4},
{"label": "4", "matrix": [2, 3], "x": 4, "y": 2.25},
{"label": "E", "matrix": [2, 4], "x": 4.5, "y": 3.4},
{"label": "R", "matrix": [2, 5], "x": 6, "y": 3.3},
{"label": "B", "matrix": [2, 6], "x": 6.5, "y": 5.75, "w": 1.5},
{"label": "Caps Lock", "matrix": [3, 0], "x": 0, "y": 3.5},
{"label": "L Alt", "matrix": [3, 1], "x": 0.25, "y": 4.75, "w": 1.5},
{"label": "A", "matrix": [3, 2], "x": 2.5, "y": 4.5},
{"label": "W", "matrix": [3, 3], "x": 3.5, "y": 3.4},
{"label": "D", "matrix": [3, 4], "x": 4.5, "y": 4.5},
{"label": "F", "matrix": [3, 5], "x": 6, "y": 4.3},
{"label": "P", "matrix": [3, 6], "x": 8, "y": 5.75},
{"label": "L Shift", "matrix": [4, 1], "x": 0.25, "y": 5.75, "w": 1.5},
{"label": "Z", "matrix": [4, 2], "x": 2.5, "y": 5.6},
{"label": "S", "matrix": [4, 3], "x": 3.5, "y": 4.5},
{"label": "V", "matrix": [4, 5], "x": 5, "y": 5.75, "w": 1.5},
{"label": "Space", "matrix": [4, 6], "x": 6.5, "y": 6.85, "w": 1.75},
{"label": "L Ctrl Duck", "matrix": [5, 1], "x": 0.25, "y": 6.75, "w": 1.5},
{"label": "X", "matrix": [5, 3], "x": 3.5, "y": 5.6},
{"label": "C", "matrix": [5, 5], "x": 4.75, "y": 6.85, "w": 1.75},
{"label": "L Ctrl", "matrix": [5, 6], "x": 9.5, "y": 5.75}
]
}
}
}

View File

@ -0,0 +1,21 @@
// Copyright 2024 customMK
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_F9, KC_7, KC_8, KC_9, KC_0, KC_MINUS, KC_T,
KC_PSCR, KC_1, KC_2, KC_3, KC_5, KC_6, KC_G,
KC_F5, KC_TAB, KC_Q, KC_4, KC_E, KC_R, KC_B,
KC_CAPS, KC_LALT, KC_A, KC_W, KC_D, KC_F, KC_P,
KC_LSFT, KC_Z, KC_S, KC_V, KC_SPC,
KC_LCTL, KC_X, KC_C, KC_LCTL
)
};
#if defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU), ENCODER_CCW_CW(KC_VOLD, KC_VOLU), ENCODER_CCW_CW(KC_VOLD, KC_VOLU) }
};
#endif

View File

@ -0,0 +1 @@
ENCODER_MAP_ENABLE = yes

View File

@ -0,0 +1,6 @@
// Copyright 2024 customMK
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#define DYNAMIC_KEYMAP_MACRO_COUNT 128

View File

@ -0,0 +1,19 @@
// Copyright 2024 customMK
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_F9, KC_7, KC_8, KC_9, KC_0, KC_MINUS, KC_T,
KC_PSCR, KC_1, KC_2, KC_3, KC_5, KC_6, KC_G,
KC_F5, KC_TAB, KC_Q, KC_4, KC_E, KC_R, KC_B,
KC_CAPS, KC_LALT, KC_A, KC_W, KC_D, KC_F, KC_P,
KC_LSFT, KC_Z, KC_S, KC_V, KC_SPC,
KC_LCTL, KC_X, KC_C, KC_LCTL
)
};
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU), ENCODER_CCW_CW(KC_VOLD, KC_VOLU), ENCODER_CCW_CW(KC_VOLD, KC_VOLU) }
};

View File

@ -0,0 +1,2 @@
VIA_ENABLE = yes
ENCODER_MAP_ENABLE = yes

View File

@ -0,0 +1,31 @@
/* Copyright 2024 customMK
*
* 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_next <mcuconf.h>
// Used for audio
#undef STM32_PWM_USE_TIM4
#define STM32_PWM_USE_TIM4 TRUE
// Used for FRAM
#undef STM32_SPI_USE_SPI1
#define STM32_SPI_USE_SPI1 TRUE
// Used for RGB matrix
#undef STM32_PWM_USE_TIM1
#define STM32_PWM_USE_TIM1 TRUE

View File

@ -0,0 +1,27 @@
# ergostrafer rgb
![ergostrafer rgb](https://i.imgur.com/3LZImFwh.jpeg)
ErgoStrafer RGB is a gaming mechanical keyboard with per-key RGB LEDs that reproduces the layout of the discontinued SteelSeries Merc Stealth a.k.a. Zboard.
* Keyboard Maintainer: [customMK](https://github.com/customMK)
* Hardware Supported: ErgoStrafer RGB
* Hardware Availability: [customMK](https://shop.custommk.com/collections/ergostrafer/products/ergostrafer)
Make example for this keyboard (after setting up your build environment):
make custommk/ergostrafer_rgb:default
Flashing example for this keyboard:
make custommk/ergostrafer_rgb:default:flash
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
## Bootloader
Enter the bootloader in 3 ways:
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (the "Load" key in the top right corner) and plug in the keyboard
* **Physical reset button**: Briefly press the button on the back of the PCB
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

View File

@ -0,0 +1 @@
AUDIO_DRIVER = pwm_hardware

View File

@ -139,41 +139,41 @@
{ "flags": 4, "matrix": [2, 5], "x": 175, "y": 25 },
{ "flags": 8, "matrix": [2, 1], "x": 0, "y": 35 },
{ "flags": 4, "matrix": [1, 2], "x": 17.5, "y": 35 },
{ "flags": 4, "matrix": [2, 2], "x": 27.5, "y": 35 },
{ "flags": 4, "matrix": [3, 2], "x": 37.5, "y": 35 },
{ "flags": 4, "matrix": [4, 2], "x": 47.5, "y": 35 },
{ "flags": 4, "matrix": [4, 3], "x": 57.5, "y": 35 },
{ "flags": 4, "matrix": [5, 3], "x": 67.5, "y": 35 },
{ "flags": 4, "matrix": [5, 2], "x": 77.5, "y": 35 },
{ "flags": 4, "matrix": [6, 2], "x": 87.5, "y": 35 },
{ "flags": 4, "matrix": [7, 2], "x": 97.5, "y": 35 },
{ "flags": 4, "matrix": [8, 2], "x": 107.5, "y": 35 },
{ "flags": 4, "matrix": [8, 3], "x": 117.5, "y": 35 },
{ "flags": 4, "matrix": [10, 4], "x": 127.5, "y": 35 },
{ "flags": 4, "matrix": [1, 2], "x": 17, "y": 35 },
{ "flags": 4, "matrix": [2, 2], "x": 27, "y": 35 },
{ "flags": 4, "matrix": [3, 2], "x": 37, "y": 35 },
{ "flags": 4, "matrix": [4, 2], "x": 47, "y": 35 },
{ "flags": 4, "matrix": [4, 3], "x": 57, "y": 35 },
{ "flags": 4, "matrix": [5, 3], "x": 67, "y": 35 },
{ "flags": 4, "matrix": [5, 2], "x": 77, "y": 35 },
{ "flags": 4, "matrix": [6, 2], "x": 87, "y": 35 },
{ "flags": 4, "matrix": [7, 2], "x": 97, "y": 35 },
{ "flags": 4, "matrix": [8, 2], "x": 107, "y": 35 },
{ "flags": 4, "matrix": [8, 3], "x": 117, "y": 35 },
{ "flags": 4, "matrix": [10, 4], "x": 127, "y": 35 },
{ "flags": 4, "matrix": [0, 0], "x": 0, "y": 45 },
{ "flags": 4, "matrix": [1, 4], "x": 22.5, "y": 45 },
{ "flags": 4, "matrix": [2, 4], "x": 32.5, "y": 45 },
{ "flags": 4, "matrix": [3, 4], "x": 42.5, "y": 45 },
{ "flags": 4, "matrix": [4, 4], "x": 52.5, "y": 45 },
{ "flags": 4, "matrix": [4, 5], "x": 62.5, "y": 45 },
{ "flags": 4, "matrix": [5, 5], "x": 72.5, "y": 45 },
{ "flags": 4, "matrix": [5, 4], "x": 82.5, "y": 45 },
{ "flags": 4, "matrix": [6, 4], "x": 92.5, "y": 45 },
{ "flags": 4, "matrix": [7, 4], "x": 102.5, "y": 45 },
{ "flags": 4, "matrix": [8, 5], "x": 112.5, "y": 45 },
{ "flags": 4, "matrix": [9, 1], "x": 122.5, "y": 45 },
{ "flags": 4, "matrix": [1, 4], "x": 22, "y": 45 },
{ "flags": 4, "matrix": [2, 4], "x": 32, "y": 45 },
{ "flags": 4, "matrix": [3, 4], "x": 42, "y": 45 },
{ "flags": 4, "matrix": [4, 4], "x": 52, "y": 45 },
{ "flags": 4, "matrix": [4, 5], "x": 62, "y": 45 },
{ "flags": 4, "matrix": [5, 5], "x": 72, "y": 45 },
{ "flags": 4, "matrix": [5, 4], "x": 82, "y": 45 },
{ "flags": 4, "matrix": [6, 4], "x": 92, "y": 45 },
{ "flags": 4, "matrix": [7, 4], "x": 102, "y": 45 },
{ "flags": 4, "matrix": [8, 5], "x": 112, "y": 45 },
{ "flags": 4, "matrix": [9, 1], "x": 122, "y": 45 },
{ "flags": 4, "matrix": [3, 5], "x": 165, "y": 45 },
{ "flags": 4, "matrix": [0, 6], "x": 0, "y": 55 },
{ "flags": 4, "matrix": [9, 0], "x": 12.5, "y": 55 },
{ "flags": 4, "matrix": [9, 0], "x": 12, "y": 55 },
{ "flags": 4, "matrix": [9, 3], "x": 25, "y": 55 },
{ "flags": 4, "matrix": [9, 4], "x": 37.5, "y": 55 },
{ "flags": 4, "matrix": [9, 4], "x": 37, "y": 55 },
{ "flags": 4, "matrix": [9, 5], "x": 100, "y": 55 },
{ "flags": 4, "matrix": [9, 2], "x": 112.5, "y": 55 },
{ "flags": 4, "matrix": [9, 2], "x": 112, "y": 55 },
{ "flags": 4, "matrix": [8, 4], "x": 125, "y": 55 },
{ "flags": 4, "matrix": [0, 4], "x": 137.5, "y": 55 },
{ "flags": 4, "matrix": [0, 4], "x": 137, "y": 55 },
{ "flags": 4, "matrix": [0, 3], "x": 155, "y": 55 },
{ "flags": 4, "matrix": [7, 3], "x": 165, "y": 55 },
{ "flags": 4, "matrix": [0, 5], "x": 175, "y": 55 }

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make db/db63:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make db/db63:default:flash

View File

@ -48,54 +48,54 @@
"driver": "ws2812",
"layout": [
{"flags": 4, "matrix": [0, 0], "x": 0, "y": 0},
{"flags": 4, "matrix": [0, 1], "x": 62.2, "y": 0},
{"flags": 4, "matrix": [0, 2], "x": 99.6, "y": 0},
{"flags": 4, "matrix": [0, 3], "x": 124.4, "y": 0},
{"flags": 4, "matrix": [0, 4], "x": 149.3, "y": 0},
{"flags": 4, "matrix": [0, 5], "x": 174.2, "y": 0},
{"flags": 4, "matrix": [0, 6], "x": 199.1, "y": 0},
{"flags": 4, "matrix": [0, 1], "x": 62, "y": 0},
{"flags": 4, "matrix": [0, 2], "x": 99, "y": 0},
{"flags": 4, "matrix": [0, 3], "x": 124, "y": 0},
{"flags": 4, "matrix": [0, 4], "x": 149, "y": 0},
{"flags": 4, "matrix": [0, 5], "x": 174, "y": 0},
{"flags": 4, "matrix": [0, 6], "x": 199, "y": 0},
{"flags": 4, "matrix": [0, 7], "x": 224, "y": 0},
{"flags": 4, "matrix": [1, 0], "x": 0, "y": 12.8},
{"flags": 4, "matrix": [1, 1], "x": 24.9, "y": 12.8},
{"flags": 4, "matrix": [1, 2], "x": 49.8, "y": 12.8},
{"flags": 4, "matrix": [1, 3], "x": 74.6, "y": 12.8},
{"flags": 4, "matrix": [1, 4], "x": 99.6, "y": 12.8},
{"flags": 4, "matrix": [1, 5], "x": 124.4, "y": 12.8},
{"flags": 4, "matrix": [1, 6], "x": 149.3, "y": 12.8},
{"flags": 4, "matrix": [1, 0], "x": 0, "y": 12},
{"flags": 4, "matrix": [1, 1], "x": 24, "y": 12},
{"flags": 4, "matrix": [1, 2], "x": 49, "y": 12},
{"flags": 4, "matrix": [1, 3], "x": 74, "y": 12},
{"flags": 4, "matrix": [1, 4], "x": 99, "y": 12},
{"flags": 4, "matrix": [1, 5], "x": 124, "y": 12},
{"flags": 4, "matrix": [1, 6], "x": 149, "y": 12},
{"flags": 4, "matrix": [2, 0], "x": 0, "y": 25.6},
{"flags": 4, "matrix": [2, 1], "x": 24.9, "y": 25.6},
{"flags": 4, "matrix": [2, 2], "x": 49.8, "y": 25.6},
{"flags": 4, "matrix": [2, 3], "x": 74.6, "y": 32},
{"flags": 4, "matrix": [2, 4], "x": 90, "y": 25.6},
{"flags": 4, "matrix": [2, 5], "x": 124.4, "y": 25.6},
{"flags": 4, "matrix": [2, 6], "x": 149.3, "y": 25.6},
{"flags": 4, "matrix": [2, 0], "x": 0, "y": 25},
{"flags": 4, "matrix": [2, 1], "x": 24, "y": 25},
{"flags": 4, "matrix": [2, 2], "x": 49, "y": 25},
{"flags": 4, "matrix": [2, 3], "x": 74, "y": 32},
{"flags": 4, "matrix": [2, 4], "x": 90, "y": 25},
{"flags": 4, "matrix": [2, 5], "x": 124, "y": 25},
{"flags": 4, "matrix": [2, 6], "x": 149, "y": 25},
{"flags": 4, "matrix": [3, 0], "x": 0, "y": 38.4},
{"flags": 4, "matrix": [3, 1], "x": 24.9, "y": 38.4},
{"flags": 4, "matrix": [3, 2], "x": 49.8, "y": 38.4},
{"flags": 4, "matrix": [3, 3], "x": 99.6, "y": 38.4},
{"flags": 4, "matrix": [3, 4], "x": 124.4, "y": 38.4},
{"flags": 4, "matrix": [3, 5], "x": 149.3, "y": 38.4},
{"flags": 4, "matrix": [3, 0], "x": 0, "y": 38},
{"flags": 4, "matrix": [3, 1], "x": 24, "y": 38},
{"flags": 4, "matrix": [3, 2], "x": 49, "y": 38},
{"flags": 4, "matrix": [3, 3], "x": 99, "y": 38},
{"flags": 4, "matrix": [3, 4], "x": 124, "y": 38},
{"flags": 4, "matrix": [3, 5], "x": 149, "y": 38},
{"flags": 4, "matrix": [4, 0], "x": 0, "y": 51.2},
{"flags": 4, "matrix": [4, 1], "x": 24.9, "y": 51.2},
{"flags": 4, "matrix": [4, 2], "x": 49.8, "y": 51.2},
{"flags": 4, "matrix": [4, 3], "x": 74.6, "y": 57.6},
{"flags": 4, "matrix": [4, 5], "x": 124.4, "y": 51.2},
{"flags": 4, "matrix": [4, 0], "x": 0, "y": 51},
{"flags": 4, "matrix": [4, 1], "x": 24, "y": 51},
{"flags": 4, "matrix": [4, 2], "x": 49, "y": 51},
{"flags": 4, "matrix": [4, 3], "x": 74, "y": 57},
{"flags": 4, "matrix": [4, 5], "x": 124, "y": 51},
{"flags": 4, "matrix": [5, 0], "x": 12.5, "y": 64},
{"flags": 4, "matrix": [5, 1], "x": 49.8, "y": 64},
{"flags": 4, "matrix": [5, 2], "x": 99.6, "y": 64},
{"flags": 4, "matrix": [5, 3], "x": 124.4, "y": 64},
{"flags": 4, "matrix": [5, 4], "x": 149.3, "y": 64},
{"flags": 4, "matrix": [5, 0], "x": 12, "y": 64},
{"flags": 4, "matrix": [5, 1], "x": 49, "y": 64},
{"flags": 4, "matrix": [5, 2], "x": 99, "y": 64},
{"flags": 4, "matrix": [5, 3], "x": 124, "y": 64},
{"flags": 4, "matrix": [5, 4], "x": 149, "y": 64},
{"flags": 2, "x": 224, "y": 64},
{"flags": 2, "x": 74.6, "y": 64},
{"flags": 2, "x": 74, "y": 64},
{"flags": 2, "x": 0, "y": 64},
{"flags": 2, "x": 0, "y": 0},
{"flags": 2, "x": 74.6, "y": 0},
{"flags": 2, "x": 74, "y": 0},
{"flags": 2, "x": 224, "y": 0}
],
"max_brightness": 200,

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make donutcables/budget96:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make donutcables/budget96:default:flash

View File

@ -2,5 +2,11 @@
"keyboard_name": "ErgoDox EZ",
"usb": {
"pid": "0x4974"
},
"features": {
"bootmagic": false,
"mousekey": true,
"extrakey": true,
"nkro": true
}
}

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make eve/meteor:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make eve/meteor:default:flash

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make exclusive/e6v2/le_bmc:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make exclusive/e6v2/le_bmc:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make exclusive/e6v2/oe_bmc:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make exclusive/e6v2/oe_bmc:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make exent:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](flashing_bootloadhid.md))
Flashing example for this keyboard:
make exent:default:flash

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make facew:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make facew:default:flash

View File

@ -15,13 +15,11 @@ Make example for this keyboard (after setting up your build environment):
make foxlab/time80:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make foxlab/time80:default:flash
**Reset Key**: There are no reset switches or pads. Follow this
[guide](https://docs.qmk.fm/#/flashing_bootloadhid)
to have it flashed for the first time. Remember to add a `QK_BOOT`
**Reset Key**: There are no reset switches or pads. Remember to add a `QK_BOOT`
key on your keymap for future endeavors.
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make ft/mars65:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make ft/mars65:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make ft/mars80:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make ft/mars80:default:flash

View File

@ -107,12 +107,14 @@ led_config_t g_led_config = {{
2, 2, 2, 2, 2, 2, 2
} };
# ifdef AW20216S_PW_EN_PIN_1
# ifdef AW20216S_PW_EN_PIN
void keyboard_pre_init_user(void) {
void keyboard_pre_init_kb(void) {
wait_ms(2000);
gpio_set_pin_output(AW20216S_PW_EN_PIN);
gpio_write_pin_high(AW20216S_PW_EN_PIN);
keyboard_pre_init_user();
}
# endif

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make gray_studio/hb85:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make gray_studio/hb85:default:flash

View File

@ -29,8 +29,8 @@
"rgb_matrix": {
"driver": "ws2812",
"layout": [
{"x": 0, "y": 0.375},
{"x": 16.5, "y": 0.38}
{"x": 0, "y": 0},
{"x": 16, "y": 0}
],
"split_count": [1, 1]
},

View File

@ -3,6 +3,9 @@
#pragma once
#define MATRIX_COLS 8
#define MATRIX_ROWS 5
#define SPI_SCK_PIN GP2
#define SPI_MOSI_PIN GP3
#define SPI_MISO_PIN GP4

View File

@ -10,10 +10,6 @@
},
"processor": "RP2040",
"bootloader": "rp2040",
"matrix_size": {
"cols": 8,
"rows": 5
},
"diode_direction": "COL2ROW",
"features": {
"bootmagic": true,

View File

@ -166,19 +166,19 @@ led_config_t g_led_config = {
}, {
// LED Index to Physical Position
// Key LED
{ 0, 0 }, { 26.35, 0 }, { 39.53, 0 }, { 52.71, 0 }, { 65.88, 0 }, { 79.06, 0 }, { 92.24, 0 }, { 105.41, 0 }, { 118.59, 0 }, { 131.77, 0 }, { 144.94, 0 }, { 158.12, 0 }, { 171.29, 0 }, { 197.65, 0 }, { 210.82, 0 }, { 224, 0 },
{ 0, 0 }, { 26, 0 }, { 39, 0 }, { 52, 0 }, { 65, 0 }, { 79, 0 }, { 92, 0 }, { 105, 0 }, { 118, 0 }, { 131, 0 }, { 144, 0 }, { 158, 0 }, { 171, 0 }, { 197, 0 }, { 210, 0 }, { 224, 0 },
{ 0, 21.33 }, { 13.18, 21.33 }, { 26.35, 21.33 }, { 39.53, 21.33 }, { 52.71, 21.33 }, { 65.88, 21.33 }, { 79.06, 21.33 }, { 92.24, 21.33 }, { 105.41, 21.33 }, { 118.59, 21.33 }, { 131.77, 21.33 }, { 144.94, 21.33 }, { 158.12, 21.33 }, { 171.29, 21.33 }, { 197.65, 21.33 }, { 210.82, 21.33 }, { 224, 21.33 },
{ 0, 32 }, { 13.18, 32 }, { 26.35, 32 }, { 39.53, 32 }, { 52.71, 32 }, { 65.88, 32 }, { 79.06, 32 }, { 92.24, 32 }, { 105.41, 32 }, { 118.59, 32 }, { 131.77, 32 }, { 144.94, 32 }, { 158.12, 32 }, { 171.29, 32 }, { 197.65, 32 }, { 210.82, 32 }, { 224, 32 },
{ 0, 42.67 }, { 13.18, 42.67 }, { 26.35, 42.67 }, { 39.53, 42.67 }, { 52.71, 42.67 }, { 65.88, 42.67 }, { 79.06, 42.67 }, { 92.24, 42.67 }, { 105.41, 42.67 }, { 118.59, 42.67 }, { 131.77, 42.67 }, { 144.94, 42.67 }, { 171.29, 42.67 },
{ 0, 53.33 }, { 26.35, 53.33 }, { 39.53, 53.33 }, { 52.71, 53.33 }, { 65.88, 53.33 }, { 79.06, 53.33 }, { 92.24, 53.33 }, { 105.41, 53.33 }, { 118.59, 53.33 }, { 131.77, 53.33 }, { 144.94, 53.33 }, { 171.29, 53.33 }, { 210.82, 53.33 },
{ 0, 64 }, { 13.18, 64 }, { 26.35, 64 }, { 79.06, 64 }, { 131.77, 64 }, { 144.94, 64 }, { 158.12, 64 }, { 171.29, 64 }, { 197.65, 64 }, { 210.82, 64 }, { 224, 64 },
{ 0, 21 }, { 13, 21 }, { 26, 21 }, { 39, 21 }, { 52, 21 }, { 65, 21 }, { 79, 21 }, { 92, 21 }, { 105, 21 }, { 118, 21 }, { 131, 21 }, { 144, 21 }, { 158, 21 }, { 171, 21 }, { 197, 21 }, { 210, 21 }, { 224, 21 },
{ 0, 32 }, { 13, 32 }, { 26, 32 }, { 39, 32 }, { 52, 32 }, { 65, 32 }, { 79, 32 }, { 92, 32 }, { 105, 32 }, { 118, 32 }, { 131, 32 }, { 144, 32 }, { 158, 32 }, { 171, 32 }, { 197, 32 }, { 210, 32 }, { 224, 32 },
{ 0, 42 }, { 13, 42 }, { 26, 42 }, { 39, 42 }, { 52, 42 }, { 65, 42 }, { 79, 42 }, { 92, 42 }, { 105, 42 }, { 118, 42 }, { 131, 42 }, { 144, 42 }, { 171, 42 },
{ 0, 53 }, { 26, 53 }, { 39, 53 }, { 52, 53 }, { 65, 53 }, { 79, 53 }, { 92, 53 }, { 105, 53 }, { 118, 53 }, { 131, 53 }, { 144, 53 }, { 171, 53 }, { 210, 53 },
{ 0, 64 }, { 13, 64 }, { 26, 64 }, { 79, 64 }, { 131, 64 }, { 144, 64 }, { 158, 64 }, { 171, 64 }, { 197, 64 }, { 210, 64 }, { 224, 64 },
// Underglow LED
{ 224, 64 }, { 206.77, 64 }, { 189.54, 64 }, { 172.31, 64 }, { 155.08, 64 }, { 137.85, 64 }, { 120.61, 64 }, { 103.38, 64 }, { 86.15, 64 }, { 68.92, 64 }, { 51.69, 64 }, { 34.46, 64 }, { 17.23, 64 }, { 0, 64 },
{ 0, 42.67 }, { 0, 21.33 },
{ 0, 0 }, { 17.23, 0 }, { 34.46, 0 }, { 51.69, 0 }, { 68.92, 0 }, { 86.15, 0 }, { 103.38, 0 }, { 120.61, 0 }, { 137.85, 0 }, { 155.08, 0 }, { 172.31, 0 }, { 189.54, 0 }, { 206.77, 0 }, { 224, 0 },
{ 224, 21.33 }, { 224, 42.67 }
{ 224, 64 }, { 206, 64 }, { 189, 64 }, { 172, 64 }, { 155, 64 }, { 137, 64 }, { 120, 64 }, { 103, 64 }, { 86, 64 }, { 68, 64 }, { 51, 64 }, { 34, 64 }, { 17, 64 }, { 0, 64 },
{ 0, 42 }, { 0, 21 },
{ 0, 0 }, { 17, 0 }, { 34, 0 }, { 51, 0 }, { 68, 0 }, { 86, 0 }, { 103, 0 }, { 120, 0 }, { 137, 0 }, { 155, 0 }, { 172, 0 }, { 189, 0 }, { 206, 0 }, { 224, 0 },
{ 224, 21 }, { 224, 42 }
}, {
// LED Index to Flag
//Key LED

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make j80:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make j80:default:flash

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make jaykeeb/skyline:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make jaykeeb/skyline:default:flash

View File

@ -16,7 +16,7 @@ Make example for this keyboard (after setting up your build environment):
make jc65/v32a:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make jc65/v32a:default:flash

View File

@ -26,10 +26,10 @@ led_config_t g_led_config = { {
{ 83, 82, 81, NO_LED, NO_LED, 80, NO_LED, NO_LED, 79, 78, 77, 76, NO_LED,75 ,74}
}, {
{0, 0}, {15, 0}, {30, 0},{45, 0}, {60, 0}, {75, 0}, {90, 0}, {105, 0}, {120, 0}, {135, 0}, {150, 0}, {165, 0}, {180, 0}, {195, 0}, {210, 0}, {224, 0},
{224, 12.8}, {218, 12.8},{192, 12.8},{176, 12.8},{160, 12.8},{144, 12.8},{128, 12.8},{112, 12.8},{96, 12.8},{80, 12.8},{64, 12.8},{48, 12.8},{32, 12.8},{16, 12.8},{0, 12.8},
{0, 25.6},{16, 25.6}, {32, 25.6}, {48, 25.6}, {64, 25.6}, {80, 25.6}, {96, 25.6}, {112, 25.6}, {128, 25.6}, {144, 25.6}, {160, 25.6},{176, 25.6}, {192, 25.6}, {218, 25.6}, {224, 25.6},
{224, 38.4},{200, 38.4},{176, 38.4},{160, 38.4},{144, 38.4},{128, 38.4},{112, 38.4},{96, 38.4},{80, 38.4},{64, 38.4},{48, 38.4},{32, 38.4},{16, 38.4},{0, 38.4},
{0, 51.2},{16, 51.2}, {32, 51.2}, {48, 51.2}, {64, 51.2}, {80, 51.2}, {96, 51.2}, {112, 51.2}, {128, 51.2}, {144, 51.2}, {160, 51.2}, {189, 51.2}, {218, 51.2}, {224, 51.2},
{224, 12}, {218, 12},{192, 12},{176, 12},{160, 12},{144, 12},{128, 12},{112, 12},{96, 12},{80, 12},{64, 12},{48, 12},{32, 12},{16, 12},{0, 12},
{0, 25},{16, 25}, {32, 25}, {48, 25}, {64, 25}, {80, 25}, {96, 25}, {112, 25}, {128, 25}, {144, 25}, {160, 25},{176, 25}, {192, 25}, {218, 25}, {224, 25},
{224, 38},{200, 38},{176, 38},{160, 38},{144, 38},{128, 38},{112, 38},{96, 38},{80, 38},{64, 38},{48, 38},{32, 38},{16, 38},{0, 38},
{0, 51},{16, 51}, {32, 51}, {48, 51}, {64, 51}, {80, 51}, {96, 51}, {112, 51}, {128, 51}, {144, 51}, {160, 51}, {189, 51}, {218, 51}, {224, 51},
{224, 64},{218, 64},{192, 64},{176, 64},{160, 64},{144, 64}, {80, 64}, {32, 64},{16, 64},{0, 64}
}, {
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make kbdfans/kbdpad/mk1:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make kbdfans/kbdpad/mk1:default:flash

View File

@ -65,23 +65,23 @@
{"flags": 4, "matrix": [0, 1], "x": 75, "y": 0},
{"flags": 4, "matrix": [0, 2], "x": 150, "y": 0},
{"flags": 4, "matrix": [0, 3], "x": 224, "y": 0},
{"flags": 4, "matrix": [1, 3], "x": 224, "y": 12.8},
{"flags": 4, "matrix": [1, 2], "x": 150, "y": 12.8},
{"flags": 4, "matrix": [1, 1], "x": 75, "y": 12.8},
{"flags": 4, "matrix": [1, 0], "x": 0, "y": 12.8},
{"flags": 4, "matrix": [2, 0], "x": 0, "y": 25.6},
{"flags": 4, "matrix": [2, 1], "x": 75, "y": 25.6},
{"flags": 4, "matrix": [2, 2], "x": 150, "y": 25.6},
{"flags": 4, "matrix": [1, 3], "x": 224, "y": 12},
{"flags": 4, "matrix": [1, 2], "x": 150, "y": 12},
{"flags": 4, "matrix": [1, 1], "x": 75, "y": 12},
{"flags": 4, "matrix": [1, 0], "x": 0, "y": 12},
{"flags": 4, "matrix": [2, 0], "x": 0, "y": 25},
{"flags": 4, "matrix": [2, 1], "x": 75, "y": 25},
{"flags": 4, "matrix": [2, 2], "x": 150, "y": 25},
{"flags": 4, "matrix": [2, 3], "x": 224, "y": 32},
{"flags": 4, "matrix": [3, 2], "x": 150, "y": 38.4},
{"flags": 4, "matrix": [3, 1], "x": 75, "y": 38.4},
{"flags": 4, "matrix": [3, 0], "x": 0, "y": 38.4},
{"flags": 4, "matrix": [4, 0], "x": 0, "y": 51.2},
{"flags": 4, "matrix": [4, 1], "x": 75, "y": 51.2},
{"flags": 4, "matrix": [4, 2], "x": 150, "y": 51.24},
{"flags": 4, "matrix": [4, 3], "x": 224, "y": 57.6},
{"flags": 4, "matrix": [3, 2], "x": 150, "y": 38},
{"flags": 4, "matrix": [3, 1], "x": 75, "y": 38},
{"flags": 4, "matrix": [3, 0], "x": 0, "y": 38},
{"flags": 4, "matrix": [4, 0], "x": 0, "y": 51},
{"flags": 4, "matrix": [4, 1], "x": 75, "y": 51},
{"flags": 4, "matrix": [4, 2], "x": 150, "y": 51},
{"flags": 4, "matrix": [4, 3], "x": 224, "y": 57},
{"flags": 4, "matrix": [5, 2], "x": 150, "y": 64},
{"flags": 4, "matrix": [5, 0], "x": 37.5, "y": 64}
{"flags": 4, "matrix": [5, 0], "x": 37, "y": 64}
],
"max_brightness": 128,
"sleep": true

View File

@ -10,16 +10,16 @@ led_config_t g_led_config = { {
}, {
// LED Index to Physical Position
//through switch
{ 26.6, 10 }, { 4.3, 10 }, { 3.8, 49.3 }, { 23.3, 49.3 },
{ 69.4, 49.3 }, { 68.9, 10 }, { 90.6, 10 }, { 89.5, 49.3 },
{ 134, 49.3 }, { 132.9, 10 }, { 155.7, 10 }, { 155.1, 49.3 },
{ 199.6, 49.3 }, { 199.6, 10 }, { 219.1, 10 }, { 219.1, 49.3 },
{ 26, 10 }, { 4, 10 }, { 3, 49 }, { 23, 49 },
{ 69, 49 }, { 68, 10 }, { 90, 10 }, { 89, 49 },
{ 134, 49 }, { 132, 10 }, { 155, 10 }, { 155, 49 },
{ 199, 49 }, { 199, 10 }, { 219, 10 }, { 219, 49 },
//underglow
{ 218, 62.2 }, { 188.7, 62.2 }, { 159.5, 62.2 }, { 123.7, 62.2 }, //bottom right
{ 100.3, 62.2 }, { 59.1, 62.2 }, { 35.3, 62.2 }, { 5.4, 62.2 }, //bottom left
{ 6, 6.4 }, { 35.3, 6.4 }, { 59.1, 6.4 }, { 100.3, 6.4 }, //top left
{ 123.7, 6.4 }, { 159.5, 6.4 }, { 188.7, 6.4 }, { 218, 6.4 } //top right
{ 218, 62 }, { 188, 62 }, { 159, 62 }, { 123, 62 }, //bottom right
{ 100, 62 }, { 59, 62 }, { 35, 62 }, { 5, 62 }, //bottom left
{ 6, 6 }, { 35, 6 }, { 59, 6 }, { 100, 6 }, //top left
{ 123, 6 }, { 159, 6 }, { 188, 6 }, { 218, 6 } //top right
}, {
// LED Index to Flag
4, 4, 4, 4,

View File

@ -0,0 +1,8 @@
{
"manufacturer": "Keebio",
"maintainer": "Keebio",
"url": "https://keeb.io",
"usb": {
"vid": "0xCB10"
}
}

View File

@ -0,0 +1,32 @@
{
"config": { "features": {"tri_layer": true} },
"keyboard": "keebio/chiri_ce/rev1",
"keymap": "default",
"layout": "LAYOUT",
"layers": [
[
"KC_TAB" , "KC_Q" , "KC_W" , "KC_E" , "KC_R" , "KC_T" , "KC_Y" , "KC_U" , "KC_I" , "KC_O" , "KC_P" , "KC_DEL" ,
"KC_LCTL", "KC_A" , "KC_S" , "KC_D" , "KC_F" , "KC_G" , "KC_H" , "KC_J" , "KC_K" , "KC_L" , "KC_SCLN", "KC_QUOT",
"KC_LSFT", "KC_Z" , "KC_X" , "KC_C" , "KC_V" , "KC_B" , "QK_GESC", "KC_BSPC", "KC_N" , "KC_M" , "KC_COMM", "KC_DOT" , "KC_SLSH", "KC_RSFT",
"KC_LGUI", "TL_LOWR", "KC_ENT" , "KC_SPC" , "TL_UPPR", "KC_RALT"
],
[
"KC_GRV" , "KC_1" , "KC_2" , "KC_3" , "KC_4" , "KC_5" , "KC_6" , "KC_7" , "KC_8" , "KC_9" , "KC_0" , "KC_BSPC",
"KC_ESC" , "KC_LEFT", "KC_DOWN", "KC_UP" , "KC_RGHT", "KC_LBRC", "KC_RBRC", "KC_P4" , "KC_P5" , "KC_P6" , "KC_PLUS", "KC_PIPE",
"RGB_MOD", "_______", "_______", "_______", "_______", "KC_LCBR", "KC_LPRN", "KC_RPRN", "KC_RCBR", "KC_P1" , "KC_P2" , "KC_P3" , "KC_MINS", "_______",
"_______", "_______", "KC_DEL" , "KC_DEL" , "_______", "KC_P0"
],
[
"RGB_TOG", "KC_EXLM", "KC_AT" , "KC_HASH", "KC_DLR" , "KC_PERC", "KC_CIRC", "KC_AMPR", "KC_ASTR", "KC_LPRN", "KC_RPRN", "QK_BOOT",
"RGB_MOD", "KC_MPRV", "KC_MNXT", "KC_VOLU", "KC_PGUP", "KC_UNDS", "KC_EQL" , "KC_HOME", "RGB_HUI", "RGB_SAI", "RGB_VAI", "KC_BSLS",
"KC_MUTE", "KC_MSTP", "KC_MPLY", "KC_VOLD", "KC_PGDN", "KC_MINS", "KC_LPRN", "_______", "KC_PLUS", "KC_END" , "RGB_HUD", "RGB_SAD", "RGB_VAD", "_______",
"_______", "_______", "_______", "_______", "_______", "_______"
],
[
"KC_F12" , "KC_F1" , "KC_F2" , "KC_F3" , "KC_F4" , "KC_F5" , "KC_F6" , "KC_F7" , "KC_F8" , "KC_F9" , "KC_F10" , "KC_F11" ,
"_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______",
"_______", "EE_CLR" , "QK_BOOT", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "QK_BOOT", "EE_CLR" , "_______",
"_______", "_______", "_______", "_______", "_______", "_______"
]
]
}

View File

@ -0,0 +1,32 @@
{
"config": { "features": {"tri_layer": true, "via": true} },
"keyboard": "keebio/chiri_ce/rev1",
"keymap": "via",
"layout": "LAYOUT",
"layers": [
[
"KC_TAB" , "KC_Q" , "KC_W" , "KC_E" , "KC_R" , "KC_T" , "KC_Y" , "KC_U" , "KC_I" , "KC_O" , "KC_P" , "KC_DEL" ,
"KC_LCTL", "KC_A" , "KC_S" , "KC_D" , "KC_F" , "KC_G" , "KC_H" , "KC_J" , "KC_K" , "KC_L" , "KC_SCLN", "KC_QUOT",
"KC_LSFT", "KC_Z" , "KC_X" , "KC_C" , "KC_V" , "KC_B" , "QK_GESC", "KC_BSPC", "KC_N" , "KC_M" , "KC_COMM", "KC_DOT" , "KC_SLSH", "KC_RSFT",
"KC_LGUI", "TL_LOWR", "KC_ENT" , "KC_SPC" , "TL_UPPR", "KC_RALT"
],
[
"KC_GRV" , "KC_1" , "KC_2" , "KC_3" , "KC_4" , "KC_5" , "KC_6" , "KC_7" , "KC_8" , "KC_9" , "KC_0" , "KC_BSPC",
"KC_ESC" , "KC_LEFT", "KC_DOWN", "KC_UP" , "KC_RGHT", "KC_LBRC", "KC_RBRC", "KC_P4" , "KC_P5" , "KC_P6" , "KC_PLUS", "KC_PIPE",
"RGB_MOD", "_______", "_______", "_______", "_______", "KC_LCBR", "KC_LPRN", "KC_RPRN", "KC_RCBR", "KC_P1" , "KC_P2" , "KC_P3" , "KC_MINS", "_______",
"_______", "_______", "KC_DEL" , "KC_DEL" , "_______", "KC_P0"
],
[
"RGB_TOG", "KC_EXLM", "KC_AT" , "KC_HASH", "KC_DLR" , "KC_PERC", "KC_CIRC", "KC_AMPR", "KC_ASTR", "KC_LPRN", "KC_RPRN", "QK_BOOT",
"RGB_MOD", "KC_MPRV", "KC_MNXT", "KC_VOLU", "KC_PGUP", "KC_UNDS", "KC_EQL" , "KC_HOME", "RGB_HUI", "RGB_SAI", "RGB_VAI", "KC_BSLS",
"KC_MUTE", "KC_MSTP", "KC_MPLY", "KC_VOLD", "KC_PGDN", "KC_MINS", "KC_LPRN", "_______", "KC_PLUS", "KC_END" , "RGB_HUD", "RGB_SAD", "RGB_VAD", "_______",
"_______", "_______", "_______", "_______", "_______", "_______"
],
[
"KC_F12" , "KC_F1" , "KC_F2" , "KC_F3" , "KC_F4" , "KC_F5" , "KC_F6" , "KC_F7" , "KC_F8" , "KC_F9" , "KC_F10" , "KC_F11" ,
"_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______",
"_______", "EE_CLR" , "QK_BOOT", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "_______", "QK_BOOT", "EE_CLR" , "_______",
"_______", "_______", "_______", "_______", "_______", "_______"
]
]
}

View File

@ -0,0 +1,25 @@
# Chiri CE (Compact Edition)
A split ergo 3x6 keyboard with 4 thumb keys made and sold by Keebio. Outer columns can be broken off to convert it to 3x5 layout. [More info at Keebio](https://keeb.io).
* Keyboard Maintainer: [Bakingpy/nooges](https://github.com/nooges)
* Hardware Supported: Chiri CE PCBs w/RP2040 microcontroller
* Hardware Availability: [Keebio](https://keeb.io)
Make example for this keyboard (after setting up your build environment):
make keebio/chiri_ce/rev1:default
Example of flashing this keyboard:
make keebio/chiri_ce/rev1:default:flash
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
## Bootloader
Enter the bootloader in 3 ways:
* **Bootmagic reset**: Hold down the key at the top left (for left half) or top right (for right half) and plug in the keyboard
* **Physical reset button**: Press and hold the button on the back of the PCB for at least 1 second and let go
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

View File

@ -0,0 +1,16 @@
// Copyright 2024 Danny Nguyen (danny@keeb.io)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#define SPLIT_HAND_PIN GP4
#define USB_VBUS_PIN GP0
#define SERIAL_USART_FULL_DUPLEX
#define SERIAL_USART_TX_PIN GP12
#define SERIAL_USART_RX_PIN GP13
#define SERIAL_USART_PIN_SWAP
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
#define I2C_DRIVER I2CD2
#define I2C1_SDA_PIN GP10
#define I2C1_SCL_PIN GP11

View File

@ -0,0 +1,189 @@
{
"keyboard_name": "Chiri CE Rev. 1",
"bootloader": "rp2040",
"diode_direction": "COL2ROW",
"dynamic_keymap": {
"layer_count": 6
},
"features": {
"bootmagic": true,
"extrakey": true,
"mousekey": true,
"rgb_matrix": true
},
"matrix_pins": {
"cols": ["GP29", "GP28", "GP27", "GP2", "GP3", "GP14"],
"rows": ["GP19", "GP20", "GP7", "GP26"]
},
"processor": "RP2040",
"rgb_matrix": {
"animations": {
"alphas_mods": true,
"band_pinwheel_sat": true,
"band_pinwheel_val": true,
"band_sat": true,
"band_spiral_sat": true,
"band_spiral_val": true,
"band_val": true,
"breathing": true,
"cycle_all": true,
"cycle_left_right": true,
"cycle_out_in": true,
"cycle_out_in_dual": true,
"cycle_pinwheel": true,
"cycle_spiral": true,
"cycle_up_down": true,
"digital_rain": true,
"dual_beacon": true,
"gradient_left_right": true,
"gradient_up_down": true,
"hue_breathing": true,
"hue_pendulum": true,
"hue_wave": true,
"jellybean_raindrops": true,
"multisplash": true,
"pixel_flow": true,
"pixel_fractal": true,
"pixel_rain": true,
"rainbow_beacon": true,
"rainbow_moving_chevron": true,
"rainbow_pinwheels": true,
"raindrops": true,
"solid_multisplash": true,
"solid_reactive": true,
"solid_reactive_cross": true,
"solid_reactive_multicross": true,
"solid_reactive_multinexus": true,
"solid_reactive_multiwide": true,
"solid_reactive_nexus": true,
"solid_reactive_simple": true,
"solid_reactive_wide": true,
"solid_splash": true,
"splash": true,
"typing_heatmap": true
},
"driver": "ws2812",
"layout": [
{"matrix": [0, 5], "x": 80, "y": 3, "flags": 4},
{"matrix": [0, 4], "x": 64, "y": 5, "flags": 4},
{"matrix": [0, 3], "x": 48, "y": 0, "flags": 4},
{"matrix": [0, 2], "x": 32, "y": 2, "flags": 4},
{"matrix": [0, 1], "x": 16, "y": 5, "flags": 4},
{"matrix": [1, 1], "x": 16, "y": 18, "flags": 4},
{"matrix": [1, 2], "x": 32, "y": 15, "flags": 4},
{"matrix": [1, 3], "x": 48, "y": 13, "flags": 4},
{"matrix": [1, 4], "x": 64, "y": 15, "flags": 4},
{"matrix": [1, 5], "x": 80, "y": 17, "flags": 4},
{"matrix": [2, 5], "x": 80, "y": 30, "flags": 4},
{"matrix": [2, 4], "x": 64, "y": 28, "flags": 4},
{"matrix": [2, 3], "x": 48, "y": 27, "flags": 4},
{"matrix": [2, 2], "x": 32, "y": 28, "flags": 4},
{"matrix": [2, 1], "x": 16, "y": 32, "flags": 4},
{"matrix": [3, 2], "x": 56, "y": 47, "flags": 4},
{"matrix": [3, 3], "x": 72, "y": 58, "flags": 4},
{"matrix": [3, 4], "x": 90, "y": 64, "flags": 4},
{"matrix": [3, 5], "x": 98, "y": 52, "flags": 4},
{"matrix": [2, 0], "x": 0, "y": 32, "flags": 4},
{"matrix": [1, 0], "x": 0, "y": 18, "flags": 4},
{"matrix": [0, 0], "x": 0, "y": 5, "flags": 4},
{"matrix": [4, 5], "x": 144, "y": 3, "flags": 4},
{"matrix": [4, 4], "x": 160, "y": 5, "flags": 4},
{"matrix": [4, 3], "x": 176, "y": 0, "flags": 4},
{"matrix": [4, 2], "x": 192, "y": 2, "flags": 4},
{"matrix": [4, 1], "x": 208, "y": 5, "flags": 4},
{"matrix": [5, 1], "x": 208, "y": 18, "flags": 4},
{"matrix": [5, 2], "x": 192, "y": 15, "flags": 4},
{"matrix": [5, 3], "x": 176, "y": 13, "flags": 4},
{"matrix": [5, 4], "x": 160, "y": 15, "flags": 4},
{"matrix": [5, 5], "x": 144, "y": 17, "flags": 4},
{"matrix": [6, 5], "x": 144, "y": 30, "flags": 4},
{"matrix": [6, 4], "x": 160, "y": 28, "flags": 4},
{"matrix": [6, 3], "x": 176, "y": 27, "flags": 4},
{"matrix": [6, 2], "x": 192, "y": 28, "flags": 4},
{"matrix": [6, 1], "x": 208, "y": 32, "flags": 4},
{"matrix": [7, 2], "x": 168, "y": 47, "flags": 4},
{"matrix": [7, 3], "x": 152, "y": 58, "flags": 4},
{"matrix": [7, 4], "x": 134, "y": 64, "flags": 4},
{"matrix": [7, 5], "x": 126, "y": 52, "flags": 4},
{"matrix": [6, 0], "x": 224, "y": 32, "flags": 4},
{"matrix": [5, 0], "x": 224, "y": 18, "flags": 4},
{"matrix": [4, 0], "x": 224, "y": 5, "flags": 4}
],
"max_brightness": 200,
"split_count": [22, 22],
"sleep": true
},
"split": {
"bootmagic": {
"matrix": [4, 0]
},
"enabled": true,
"matrix_pins": {
"right": {
"cols": ["GP29", "GP28", "GP2", "GP27", "GP18", "GP7"],
"rows": ["GP24", "GP23", "GP21", "GP3"]
}
},
"transport": {
"sync_matrix_state": true
}
},
"usb": {
"device_version": "1.0.0",
"pid": "0x1546"
},
"ws2812": {
"driver": "vendor",
"pin": "GP25"
},
"layouts": {
"LAYOUT": {
"layout": [
{"matrix": [0, 0], "x": 0, "y": 0.375},
{"matrix": [0, 1], "x": 1, "y": 0.375},
{"matrix": [0, 2], "x": 2, "y": 0.125},
{"matrix": [0, 3], "x": 3, "y": 0},
{"matrix": [0, 4], "x": 4, "y": 0.125},
{"matrix": [0, 5], "x": 5, "y": 0.25},
{"matrix": [4, 5], "x": 9, "y": 0.25},
{"matrix": [4, 4], "x": 10, "y": 0.125},
{"matrix": [4, 3], "x": 11, "y": 0},
{"matrix": [4, 2], "x": 12, "y": 0.125},
{"matrix": [4, 1], "x": 13, "y": 0.375},
{"matrix": [4, 0], "x": 14, "y": 0.375},
{"matrix": [1, 0], "x": 0, "y": 1.375},
{"matrix": [1, 1], "x": 1, "y": 1.375},
{"matrix": [1, 2], "x": 2, "y": 1.125},
{"matrix": [1, 3], "x": 3, "y": 1},
{"matrix": [1, 4], "x": 4, "y": 1.125},
{"matrix": [1, 5], "x": 5, "y": 1.25},
{"matrix": [5, 5], "x": 9, "y": 1.25},
{"matrix": [5, 4], "x": 10, "y": 1.125},
{"matrix": [5, 3], "x": 11, "y": 1},
{"matrix": [5, 2], "x": 12, "y": 1.125},
{"matrix": [5, 1], "x": 13, "y": 1.375},
{"matrix": [5, 0], "x": 14, "y": 1.375},
{"matrix": [2, 0], "x": 0, "y": 2.375},
{"matrix": [2, 1], "x": 1, "y": 2.375},
{"matrix": [2, 2], "x": 2, "y": 2.125},
{"matrix": [2, 3], "x": 3, "y": 2},
{"matrix": [2, 4], "x": 4, "y": 2.125},
{"matrix": [2, 5], "x": 5, "y": 2.25},
{"matrix": [3, 5], "x": 6.15, "y": 2.75},
{"matrix": [7, 5], "x": 7.85, "y": 2.75},
{"matrix": [6, 5], "x": 9, "y": 2.25},
{"matrix": [6, 4], "x": 10, "y": 2.125},
{"matrix": [6, 3], "x": 11, "y": 2},
{"matrix": [6, 2], "x": 12, "y": 2.125},
{"matrix": [6, 1], "x": 13, "y": 2.375},
{"matrix": [6, 0], "x": 14, "y": 2.375},
{"matrix": [3, 2], "x": 3.5, "y": 3.25},
{"matrix": [3, 3], "x": 4.5, "y": 3.375},
{"matrix": [3, 4], "x": 5.6, "y": 3.75},
{"matrix": [7, 4], "x": 8.4, "y": 3.75},
{"matrix": [7, 3], "x": 9.5, "y": 3.375},
{"matrix": [7, 2], "x": 10.5, "y": 3.25}
]
}
}
}

View File

@ -0,0 +1 @@
SERIAL_DRIVER = vendor

View File

@ -16,6 +16,9 @@
#pragma once
#define MATRIX_COLS 16
#define MATRIX_ROWS 6
/* RGB Matrix Driver Configuration */
#define SNLED27351_I2C_ADDRESS_1 SNLED27351_I2C_ADDRESS_VDDIO
#define SNLED27351_I2C_ADDRESS_2 SNLED27351_I2C_ADDRESS_GND

View File

@ -32,10 +32,6 @@
"custom": true,
"custom_lite": true
},
"matrix_size": {
"cols": 16,
"rows": 6
},
"diode_direction": "ROW2COL",
"rgb_matrix": {
"driver": "snled27351",

View File

@ -17,7 +17,7 @@ Make example for this keyboard (after setting up your build environment):
make keychron/q2/jis:default
make keychron/q2/jis_encoder:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make keychron/q2/ansi:default:flash
make keychron/q2/ansi_encoder:default:flash

View File

@ -16,7 +16,7 @@ Make example for this keyboard (after setting up your build environment):
make keychron/q4/ansi/v2:default
make keychron/q4/iso:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make keychron/q4/ansi/v1:default:flash
make keychron/q4/ansi/v2:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make keychron/q60/ansi:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make keychron/q60/ansi:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make keychron/q65/ansi_encoder:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make keychron/q65/ansi_encoder:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make keychron/v2/ansi:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make keychron/v2/ansi:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make keychron/v4/ansi:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make keychron/v4/ansi:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make keychron/v7/ansi:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make keychron/v7/ansi:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make keychron/v8/ansi:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make keychron/v8/ansi:default:flash

View File

@ -13,7 +13,7 @@ Make example for this keyboard (after setting up your build environment):
make kira/kira80:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make kira/kira80:default:flash

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make kprepublic/jj40/rev1:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make kprepublic/jj40/rev1:default:flash

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make kprepublic/jj4x4:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make kprepublic/jj4x4:default:flash

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make kprepublic/jj50/rev1:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make kprepublic/jj50/rev1:default:flash

View File

@ -9,7 +9,7 @@ Make example for this keyboard (after setting up your build environment):
make leeku/finger65:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make leeku/finger65:default:flash

View File

@ -10,7 +10,7 @@ Make example for this keyboard (after setting up your build environment):
make mechkeys/mechmini/v1:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make mechkeys/mechmini/v1:default:flash

View File

@ -0,0 +1,7 @@
// Copyright 2024 QMK
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#define MATRIX_COLS 19
#define MATRIX_ROWS 6

View File

@ -16,10 +16,6 @@
"rows": ["D5", "D6", "A5", "A4", "A3", "A6"],
"custom_lite": true
},
"matrix_size": {
"cols": 19,
"rows": 6
},
"backlight": {
"pin": "D4",
"breathing": true

View File

@ -0,0 +1 @@
{}

View File

@ -0,0 +1,5 @@
{
"eeprom": {
"driver": "i2c"
}
}

View File

@ -1 +0,0 @@
EEPROM_DRIVER = i2c

View File

@ -0,0 +1 @@
DEFAULT_FOLDER = mechwild/obe/f401/base

View File

@ -0,0 +1 @@
{}

View File

@ -0,0 +1,5 @@
{
"eeprom": {
"driver": "i2c"
}
}

View File

@ -1 +0,0 @@
EEPROM_DRIVER = i2c

View File

@ -0,0 +1 @@
DEFAULT_FOLDER = mechwild/obe/f411/base

View File

@ -1 +1 @@
DEFAULT_FOLDER = mechwild/obe/f401
DEFAULT_FOLDER = mechwild/obe/f401/base

View File

@ -0,0 +1 @@
{}

View File

@ -0,0 +1,5 @@
{
"eeprom": {
"driver": "i2c"
}
}

View File

@ -1 +0,0 @@
EEPROM_DRIVER = i2c

View File

@ -0,0 +1 @@
DEFAULT_FOLDER = mechwild/waka60/f401/base

View File

@ -0,0 +1 @@
{}

View File

@ -0,0 +1,5 @@
{
"eeprom": {
"driver": "i2c"
}
}

View File

@ -1 +0,0 @@
EEPROM_DRIVER = i2c

View File

@ -0,0 +1 @@
DEFAULT_FOLDER = mechwild/waka60/f411/base

View File

@ -1 +1 @@
DEFAULT_FOLDER = mechwild/waka60/f401
DEFAULT_FOLDER = mechwild/waka60/f401/base

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make mehkee96:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make mehkee96:default:flash

View File

@ -78,17 +78,17 @@
{ "matrix": [6, 2], "x": 0, "y": 3, "flags": 4 },
{ "matrix": [8, 1], "x": 0, "y": 4, "flags": 4 },
{ "matrix": [8, 2], "x": 0, "y": 4, "flags": 4 },
{ "matrix": [1, 8], "x": 20.5, "y": 0, "flags": 4 },
{ "matrix": [1, 7], "x": 20.5, "y": 0, "flags": 4 },
{ "matrix": [3, 8], "x": 20.5, "y": 1, "flags": 4 },
{ "matrix": [3, 7], "x": 20.5, "y": 1, "flags": 4 },
{ "matrix": [5, 8], "x": 20.5, "y": 2, "flags": 4 },
{ "matrix": [5, 7], "x": 20.5, "y": 2, "flags": 4 },
{ "matrix": [7, 8], "x": 20.5, "y": 3, "flags": 4 },
{ "matrix": [7, 7], "x": 20.5, "y": 3, "flags": 4 },
{ "matrix": [9, 8], "x": 20.5, "y": 4, "flags": 4 },
{ "matrix": [9, 7], "x": 20.5, "y": 4, "flags": 4 },
{ "matrix": [6, 0], "x": 0, "y": 3.25, "flags": 1 }
{ "matrix": [1, 8], "x": 20, "y": 0, "flags": 4 },
{ "matrix": [1, 7], "x": 20, "y": 0, "flags": 4 },
{ "matrix": [3, 8], "x": 20, "y": 1, "flags": 4 },
{ "matrix": [3, 7], "x": 20, "y": 1, "flags": 4 },
{ "matrix": [5, 8], "x": 20, "y": 2, "flags": 4 },
{ "matrix": [5, 7], "x": 20, "y": 2, "flags": 4 },
{ "matrix": [7, 8], "x": 20, "y": 3, "flags": 4 },
{ "matrix": [7, 7], "x": 20, "y": 3, "flags": 4 },
{ "matrix": [9, 8], "x": 20, "y": 4, "flags": 4 },
{ "matrix": [9, 7], "x": 20, "y": 4, "flags": 4 },
{ "matrix": [6, 0], "x": 0, "y": 3, "flags": 1 }
]
},
"matrix_pins": {

View File

@ -12,7 +12,7 @@ Make example for this keyboard (after setting up your build environment):
make mt/mt40:default
Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))
Flashing example for this keyboard:
make mt/mt40:default:flash

Some files were not shown because too many files have changed in this diff Show More