diff options
author | Joel Spadin <[email protected]> | 2024-11-09 20:44:39 -0600 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2024-11-12 09:07:25 -0700 |
commit | c7473fc32557d2d384ab78d3acf51a05488f0214 (patch) | |
tree | e90864614cf19c432ae89f05d208b73b79b594f4 /docs | |
parent | 9320271dde53fa98baf0007187149a747dfa6954 (diff) | |
download | zmk-c7473fc32557d2d384ab78d3acf51a05488f0214.tar.gz zmk-c7473fc32557d2d384ab78d3acf51a05488f0214.zip |
fix: Fix inconsistent column offset property
Renamed the composite kscan's column-offset property to col-offset for
consistency with other properties such as matrix transform's col-offset
and matrix kscan's col-gpios.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/config/kscan.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/docs/config/kscan.md b/docs/docs/config/kscan.md index f61812e461..6e9aab02ab 100644 --- a/docs/docs/config/kscan.md +++ b/docs/docs/config/kscan.md @@ -223,11 +223,11 @@ Definition file: [zmk/app/dts/bindings/zmk,kscan-composite.yaml](https://github. The `zmk,kscan-composite` node should have one child node per keyboard scan driver that should be composited. Each child node can have the following properties: -| Property | Type | Description | Default | -| --------------- | ------- | ------------------------------------------------------------------------------ | ------- | -| `kscan` | phandle | Label of the kscan driver to include | | -| `row-offset` | int | Shifts row 0 of the included driver to a new row in the composite matrix | 0 | -| `column-offset` | int | Shifts column 0 of the included driver to a new column in the composite matrix | 0 | +| Property | Type | Description | Default | +| ------------ | ------- | ------------------------------------------------------------------------------ | ------- | +| `kscan` | phandle | Label of the kscan driver to include | | +| `row-offset` | int | Shifts row 0 of the included driver to a new row in the composite matrix | 0 | +| `col-offset` | int | Shifts column 0 of the included driver to a new column in the composite matrix | 0 | ### Example Configuration |