179bdbc41a
Changed all code (except for layer names) which used the label property to use DEVICE_DT_NAME() instead, which uses the label if set or falls back to the full node name. This matches how Zephyr determines the node names used with device_get_binding() and allows us to start removing the deprecated label property from things.
32 lines
535 B
YAML
32 lines
535 B
YAML
description: |
|
|
Allows composing multiple KSCAN devices into one virtual device
|
|
|
|
compatible: "zmk,kscan-composite"
|
|
|
|
properties:
|
|
label:
|
|
type: string
|
|
required: false
|
|
deprecated: true
|
|
rows:
|
|
type: int
|
|
columns:
|
|
type: int
|
|
|
|
child-binding:
|
|
description: "Details of an included KSCAN devices"
|
|
|
|
properties:
|
|
label:
|
|
type: string
|
|
required: false
|
|
deprecated: true
|
|
kscan:
|
|
type: phandle
|
|
row-offset:
|
|
type: int
|
|
default: 0
|
|
column-offset:
|
|
type: int
|
|
default: 0
|