Allow homekit_controller to customise Ecobee home/sleep/away thresholds (#65036)
This commit is contained in:
parent
3d461e9e1f
commit
603d0fb068
3 changed files with 122 additions and 0 deletions
|
@ -41,6 +41,42 @@ NUMBER_ENTITIES: dict[str, NumberEntityDescription] = {
|
|||
icon="mdi:volume-high",
|
||||
entity_category=EntityCategory.CONFIG,
|
||||
),
|
||||
CharacteristicsTypes.Vendor.ECOBEE_HOME_TARGET_COOL: NumberEntityDescription(
|
||||
key=CharacteristicsTypes.Vendor.ECOBEE_HOME_TARGET_COOL,
|
||||
name="Home Cool Target",
|
||||
icon="mdi:thermometer-minus",
|
||||
entity_category=EntityCategory.CONFIG,
|
||||
),
|
||||
CharacteristicsTypes.Vendor.ECOBEE_HOME_TARGET_HEAT: NumberEntityDescription(
|
||||
key=CharacteristicsTypes.Vendor.ECOBEE_HOME_TARGET_HEAT,
|
||||
name="Home Heat Target",
|
||||
icon="mdi:thermometer-plus",
|
||||
entity_category=EntityCategory.CONFIG,
|
||||
),
|
||||
CharacteristicsTypes.Vendor.ECOBEE_SLEEP_TARGET_COOL: NumberEntityDescription(
|
||||
key=CharacteristicsTypes.Vendor.ECOBEE_SLEEP_TARGET_COOL,
|
||||
name="Sleep Cool Target",
|
||||
icon="mdi:thermometer-minus",
|
||||
entity_category=EntityCategory.CONFIG,
|
||||
),
|
||||
CharacteristicsTypes.Vendor.ECOBEE_SLEEP_TARGET_HEAT: NumberEntityDescription(
|
||||
key=CharacteristicsTypes.Vendor.ECOBEE_SLEEP_TARGET_HEAT,
|
||||
name="Sleep Heat Target",
|
||||
icon="mdi:thermometer-plus",
|
||||
entity_category=EntityCategory.CONFIG,
|
||||
),
|
||||
CharacteristicsTypes.Vendor.ECOBEE_AWAY_TARGET_COOL: NumberEntityDescription(
|
||||
key=CharacteristicsTypes.Vendor.ECOBEE_AWAY_TARGET_COOL,
|
||||
name="Away Cool Target",
|
||||
icon="mdi:thermometer-minus",
|
||||
entity_category=EntityCategory.CONFIG,
|
||||
),
|
||||
CharacteristicsTypes.Vendor.ECOBEE_AWAY_TARGET_HEAT: NumberEntityDescription(
|
||||
key=CharacteristicsTypes.Vendor.ECOBEE_AWAY_TARGET_HEAT,
|
||||
name="Away Heat Target",
|
||||
icon="mdi:thermometer-plus",
|
||||
entity_category=EntityCategory.CONFIG,
|
||||
),
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue