202 lines
6.5 KiB
Python
202 lines
6.5 KiB
Python
"""
|
|
Support for Homekit number ranges.
|
|
|
|
These are mostly used where a HomeKit accessory exposes additional non-standard
|
|
characteristics that don't map to a Home Assistant feature.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from aiohomekit.model.characteristics import Characteristic, CharacteristicsTypes
|
|
|
|
from homeassistant.components.number import NumberEntity, NumberEntityDescription
|
|
from homeassistant.components.number.const import (
|
|
DEFAULT_MAX_VALUE,
|
|
DEFAULT_MIN_VALUE,
|
|
DEFAULT_STEP,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity import EntityCategory
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType
|
|
|
|
from . import KNOWN_DEVICES, CharacteristicEntity
|
|
from .connection import HKDevice
|
|
|
|
NUMBER_ENTITIES: dict[str, NumberEntityDescription] = {
|
|
CharacteristicsTypes.VENDOR_VOCOLINC_HUMIDIFIER_SPRAY_LEVEL: NumberEntityDescription(
|
|
key=CharacteristicsTypes.VENDOR_VOCOLINC_HUMIDIFIER_SPRAY_LEVEL,
|
|
name="Spray Quantity",
|
|
icon="mdi:water",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
CharacteristicsTypes.VENDOR_EVE_DEGREE_ELEVATION: NumberEntityDescription(
|
|
key=CharacteristicsTypes.VENDOR_EVE_DEGREE_ELEVATION,
|
|
name="Elevation",
|
|
icon="mdi:elevation-rise",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
CharacteristicsTypes.VENDOR_AQARA_GATEWAY_VOLUME: NumberEntityDescription(
|
|
key=CharacteristicsTypes.VENDOR_AQARA_GATEWAY_VOLUME,
|
|
name="Volume",
|
|
icon="mdi:volume-high",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
CharacteristicsTypes.VENDOR_AQARA_E1_GATEWAY_VOLUME: NumberEntityDescription(
|
|
key=CharacteristicsTypes.VENDOR_AQARA_E1_GATEWAY_VOLUME,
|
|
name="Volume",
|
|
icon="mdi:volume-high",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Homekit numbers."""
|
|
hkid = config_entry.data["AccessoryPairingID"]
|
|
conn = hass.data[KNOWN_DEVICES][hkid]
|
|
|
|
@callback
|
|
def async_add_characteristic(char: Characteristic) -> bool:
|
|
entities = []
|
|
info = {"aid": char.service.accessory.aid, "iid": char.service.iid}
|
|
|
|
if description := NUMBER_ENTITIES.get(char.type):
|
|
entities.append(HomeKitNumber(conn, info, char, description))
|
|
elif entity_type := NUMBER_ENTITY_CLASSES.get(char.type):
|
|
entities.append(entity_type(conn, info, char))
|
|
else:
|
|
return False
|
|
|
|
async_add_entities(entities, True)
|
|
return True
|
|
|
|
conn.add_char_factory(async_add_characteristic)
|
|
|
|
|
|
class HomeKitNumber(CharacteristicEntity, NumberEntity):
|
|
"""Representation of a Number control on a homekit accessory."""
|
|
|
|
def __init__(
|
|
self,
|
|
conn: HKDevice,
|
|
info: ConfigType,
|
|
char: Characteristic,
|
|
description: NumberEntityDescription,
|
|
) -> None:
|
|
"""Initialise a HomeKit number control."""
|
|
self.entity_description = description
|
|
super().__init__(conn, info, char)
|
|
|
|
@property
|
|
def name(self) -> str | None:
|
|
"""Return the name of the device if any."""
|
|
if prefix := super().name:
|
|
return f"{prefix} {self.entity_description.name}"
|
|
return self.entity_description.name
|
|
|
|
def get_characteristic_types(self) -> list[str]:
|
|
"""Define the homekit characteristics the entity is tracking."""
|
|
return [self._char.type]
|
|
|
|
@property
|
|
def min_value(self) -> float:
|
|
"""Return the minimum value."""
|
|
return self._char.minValue or DEFAULT_MIN_VALUE
|
|
|
|
@property
|
|
def max_value(self) -> float:
|
|
"""Return the maximum value."""
|
|
return self._char.maxValue or DEFAULT_MAX_VALUE
|
|
|
|
@property
|
|
def step(self) -> float:
|
|
"""Return the increment/decrement step."""
|
|
return self._char.minStep or DEFAULT_STEP
|
|
|
|
@property
|
|
def value(self) -> float:
|
|
"""Return the current characteristic value."""
|
|
return self._char.value
|
|
|
|
async def async_set_value(self, value: float) -> None:
|
|
"""Set the characteristic to this value."""
|
|
await self.async_put_characteristics(
|
|
{
|
|
self._char.type: value,
|
|
}
|
|
)
|
|
|
|
|
|
class HomeKitEcobeeFanModeNumber(CharacteristicEntity, NumberEntity):
|
|
"""Representation of a Number control for Ecobee Fan Mode request."""
|
|
|
|
def get_characteristic_types(self) -> list[str]:
|
|
"""Define the homekit characteristics the entity is tracking."""
|
|
return [self._char.type]
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name of the device if any."""
|
|
prefix = ""
|
|
if name := super().name:
|
|
prefix = name
|
|
return f"{prefix} Fan Mode"
|
|
|
|
@property
|
|
def min_value(self) -> float:
|
|
"""Return the minimum value."""
|
|
return self._char.minValue or DEFAULT_MIN_VALUE
|
|
|
|
@property
|
|
def max_value(self) -> float:
|
|
"""Return the maximum value."""
|
|
return self._char.maxValue or DEFAULT_MAX_VALUE
|
|
|
|
@property
|
|
def step(self) -> float:
|
|
"""Return the increment/decrement step."""
|
|
return self._char.minStep or DEFAULT_STEP
|
|
|
|
@property
|
|
def value(self) -> float:
|
|
"""Return the current characteristic value."""
|
|
return self._char.value
|
|
|
|
async def async_set_value(self, value: float) -> None:
|
|
"""Set the characteristic to this value."""
|
|
|
|
# Sending the fan mode request sometimes ends up getting ignored by ecobee
|
|
# and this might be because it the older value instead of newer, and ecobee
|
|
# thinks there is nothing to do.
|
|
# So in order to make sure that the request is executed by ecobee, we need
|
|
# to send a different value before sending the target value.
|
|
# Fan mode value is a value from 0 to 100. We send a value off by 1 first.
|
|
|
|
if value > self.min_value:
|
|
other_value = value - 1
|
|
else:
|
|
other_value = self.min_value + 1
|
|
|
|
if value != other_value:
|
|
await self.async_put_characteristics(
|
|
{
|
|
self._char.type: other_value,
|
|
}
|
|
)
|
|
|
|
await self.async_put_characteristics(
|
|
{
|
|
self._char.type: value,
|
|
}
|
|
)
|
|
|
|
|
|
NUMBER_ENTITY_CLASSES: dict[str, type] = {
|
|
CharacteristicsTypes.VENDOR_ECOBEE_FAN_WRITE_SPEED: HomeKitEcobeeFanModeNumber,
|
|
}
|