-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Home Row Mods, cleanup, improvements
- Loading branch information
Showing
24 changed files
with
535 additions
and
1,851 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ modules/ | |
tools/ | ||
.west/ | ||
.DS_Store | ||
.venv/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,30 @@ | ||
# Uncomment the following line to enable deep sleep | ||
# CONFIG_ZMK_SLEEP=y | ||
# Turn on logging, and set ZMK logging to debug output | ||
# CONFIG_ZMK_USB_LOGGING=y | ||
|
||
# Reset BT connections on next firmware boot | ||
# CONFIG_ZMK_BLE_CLEAR_BONDS_ON_START=y | ||
|
||
# Uncomment the following line to increase the keyboard's wireless range | ||
# Boost Bluetooth TX power | ||
CONFIG_BT_CTLR_TX_PWR_PLUS_8=y | ||
|
||
# Require passkey on pairing | ||
CONFIG_ZMK_BLE_PASSKEY_ENTRY=y | ||
|
||
# Sleep timeout 30 minutes | ||
CONFIG_ZMK_SLEEP=y | ||
CONFIG_ZMK_IDLE_SLEEP_TIMEOUT=1800000 | ||
|
||
# Enable eager debouncing | ||
CONFIG_ZMK_KSCAN_DEBOUNCE_PRESS_MS=1 | ||
CONFIG_ZMK_KSCAN_DEBOUNCE_RELEASE_MS=7 | ||
|
||
# Uncomment the following line to enable USB Logging (this increases power usage by a significant amount, turn it off when not in use) | ||
# CONFIG_ZMK_USB_LOGGING=y | ||
# Fix battery reporting on Windows | ||
CONFIG_BT_GATT_ENFORCE_SUBSCRIPTION=n | ||
|
||
# Experimental: BLE improvements | ||
CONFIG_ZMK_BLE_EXPERIMENTAL_FEATURES=y | ||
|
||
# Report battery peripheral battery level | ||
CONFIG_ZMK_SPLIT_BLE_CENTRAL_BATTERY_LEVEL_PROXY=y | ||
CONFIG_ZMK_SPLIT_BLE_CENTRAL_BATTERY_LEVEL_FETCHING=y | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,46 @@ | ||
# Copied from: https://github.com/urob/zmk-config/blob/main/config/west.yml | ||
# | ||
# This file specifies the build dependencies for Github Action workflows and | ||
# for local build environments. The workspace has three toplevel directories | ||
# containing the user config, user modules and ZMK. Zephyr and its dependencies | ||
# are namespaced under /zmk to keep the toplevel clean. | ||
# | ||
# ZMK-Workspace | ||
# ├── config | ||
# ├── modules (user modules) | ||
# └── zmk | ||
# └── modules (Zephyr modules) | ||
# | ||
# To create a local build environment, clone this repository and then run the | ||
# following commands from its toplevel directory: | ||
# | ||
# $ west init -l config | ||
# $ west update | ||
# $ west zephyr-export | ||
# | ||
--- | ||
manifest: | ||
remotes: | ||
- name: zmkfirmware | ||
url-base: https://github.com/zmkfirmware | ||
- name: urob | ||
url-base: https://github.com/urob | ||
- name: caksoylar | ||
url-base: https://github.com/caksoylar | ||
|
||
projects: | ||
- name: zmk | ||
remote: zmkfirmware | ||
import: app/west.yml | ||
revision: main | ||
|
||
- name: zmk-auto-layer | ||
remote: urob | ||
revision: main | ||
import: app/west.yml | ||
|
||
- name: zmk-tri-state | ||
remote: caksoylar | ||
revision: split-locality | ||
|
||
self: | ||
path: config |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.