Add support for homekit_controller secondary entities like power usage (#44013)
This commit is contained in:
parent
f53a83e084
commit
3b0a440770
7 changed files with 646 additions and 17 deletions
|
@ -1,4 +1,6 @@
|
|||
"""Constants for the homekit_controller component."""
|
||||
from aiohomekit.model.characteristics import CharacteristicsTypes
|
||||
|
||||
DOMAIN = "homekit_controller"
|
||||
|
||||
KNOWN_DEVICES = f"{DOMAIN}-devices"
|
||||
|
@ -40,3 +42,7 @@ HOMEKIT_ACCESSORY_DISPATCH = {
|
|||
"valve": "switch",
|
||||
"camera-rtp-stream-management": "camera",
|
||||
}
|
||||
|
||||
CHARACTERISTIC_PLATFORMS = {
|
||||
CharacteristicsTypes.Vendor.KOOGEEK_REALTIME_ENERGY: "sensor",
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue