Compare commits
2 commits
a98f7a0910
...
b76567fd67
Author | SHA1 | Date | |
---|---|---|---|
b76567fd67 | |||
3ac3a21018 |
|
@ -17,7 +17,7 @@ CONFIG_ZMK_DISPLAY=y
|
||||||
CONFIG_BT_MAX_CONN=6
|
CONFIG_BT_MAX_CONN=6
|
||||||
|
|
||||||
# Set screen blanking to 15s instead of 30s
|
# Set screen blanking to 15s instead of 30s
|
||||||
#CONFIG_ZMK_IDLE_TIMEOUT=15000
|
CONFIG_ZMK_IDLE_TIMEOUT=15000
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Debugging
|
# Debugging
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
sensors = <&encoder_4>;
|
sensors = <&encoder_4>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Purple : &rgb_ug RGB_COLOR_HSB(275, 100, 50)
|
||||||
|
// Orange : &rgb_ug RGB_COLOR_HSB(35, 100, 50)
|
||||||
|
// Blue : &rgb_ug RGB_COLOR_HSB(215, 100, 50)
|
||||||
|
|
||||||
keymap {
|
keymap {
|
||||||
compatible = "zmk,keymap";
|
compatible = "zmk,keymap";
|
||||||
default_layer {
|
default_layer {
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
# Test notes
|
# Test notes
|
||||||
|
|
||||||
|
development/guides/tests
|
||||||
|
|
||||||
cd app
|
cd app
|
||||||
west test tests/to-layer/normal
|
west test tests/to-layer/normal
|
||||||
|
|
||||||
|
@ -20,6 +22,12 @@ https://github.com/nuxiom/zmk/tree/60split
|
||||||
|
|
||||||
Also apply to underglow if Pete doesn't get there first
|
Also apply to underglow if Pete doesn't get there first
|
||||||
|
|
||||||
|
# Docker container use less instead of more
|
||||||
|
|
||||||
|
- need to install 'less' package
|
||||||
|
- need to set PAGER env var to 'less'
|
||||||
|
- submit as pr to zmk-docker repo AFTER testing locally
|
||||||
|
|
||||||
# Local github CI actions run
|
# Local github CI actions run
|
||||||
|
|
||||||
See https://github.com/nektos/act as a potential way to run local GH actions ahead of opening a PR
|
See https://github.com/nektos/act as a potential way to run local GH actions ahead of opening a PR
|
||||||
|
@ -45,17 +53,6 @@ Container tests
|
||||||
- west build -d build/ -t ram_report
|
- west build -d build/ -t ram_report
|
||||||
- west build -t menuconfig
|
- west build -t menuconfig
|
||||||
|
|
||||||
# Keycode for setting hsv of underglow
|
|
||||||
|
|
||||||
Prior to dynamic layers, implement a behavior that can set the hsv values for underglow
|
|
||||||
|
|
||||||
&rgb_ug sethsv (h,s,v) # this is the general behavior format
|
|
||||||
|
|
||||||
see bt behavior definitions for how to fake / fudge the optional 2nd parm
|
|
||||||
|
|
||||||
sethsv and sethsb defines so they are the same to end users
|
|
||||||
https://discord.com/channels/719497620560543766/719565084208398406/786814476048400424
|
|
||||||
|
|
||||||
# Dyanmic Layer Actions
|
# Dyanmic Layer Actions
|
||||||
|
|
||||||
- look at hold tap implementation for inspiration (keymap file poprtion)
|
- look at hold tap implementation for inspiration (keymap file poprtion)
|
||||||
|
@ -76,6 +73,10 @@ sethsv and sethsb defines so they are the same to end users
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Workspace documentation
|
||||||
|
|
||||||
|
finalize devcontainer-setupworkspace branch, may have existing PR open
|
||||||
|
|
||||||
# Mouse Keys
|
# Mouse Keys
|
||||||
|
|
||||||
- see keymap for codes
|
- see keymap for codes
|
||||||
|
|
Loading…
Reference in a new issue