Add onewire support for DS2413 (#55921)
This commit is contained in:
parent
12b6922875
commit
49b07224bf
3 changed files with 70 additions and 0 deletions
|
@ -57,6 +57,15 @@ DEVICE_BINARY_SENSORS: dict[str, tuple[OneWireBinarySensorEntityDescription, ...
|
|||
)
|
||||
for id in DEVICE_KEYS_0_7
|
||||
),
|
||||
"3A": tuple(
|
||||
OneWireBinarySensorEntityDescription(
|
||||
key=f"sensed.{id}",
|
||||
entity_registry_enabled_default=False,
|
||||
name=f"Sensed {id}",
|
||||
read_mode=READ_MODE_BOOL,
|
||||
)
|
||||
for id in DEVICE_KEYS_A_B
|
||||
),
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue