2021-09-30 10:02:56 +00:00
|
|
|
"""Tuya Home Assistant Base Device Model."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from typing import Any
|
|
|
|
|
|
|
|
from tuya_iot import TuyaDevice, TuyaDeviceManager
|
|
|
|
|
|
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
|
|
|
|
from .const import DOMAIN, TUYA_HA_SIGNAL_UPDATE_ENTITY
|
|
|
|
|
|
|
|
|
|
|
|
class TuyaHaEntity(Entity):
|
|
|
|
"""Tuya base device."""
|
|
|
|
|
2021-10-12 03:37:18 +00:00
|
|
|
_attr_should_poll = False
|
|
|
|
|
2021-09-30 10:02:56 +00:00
|
|
|
def __init__(self, device: TuyaDevice, device_manager: TuyaDeviceManager) -> None:
|
|
|
|
"""Init TuyaHaEntity."""
|
2021-10-12 03:37:18 +00:00
|
|
|
self._attr_unique_id = f"tuya.{device.id}"
|
2021-09-30 10:02:56 +00:00
|
|
|
self.tuya_device = device
|
|
|
|
self.tuya_device_manager = device_manager
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self) -> str | None:
|
|
|
|
"""Return Tuya device name."""
|
|
|
|
return self.tuya_device.name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_info(self):
|
|
|
|
"""Return a device description for device registry."""
|
2021-10-05 10:59:51 +00:00
|
|
|
return {
|
2021-09-30 10:02:56 +00:00
|
|
|
"identifiers": {(DOMAIN, f"{self.tuya_device.id}")},
|
|
|
|
"manufacturer": "Tuya",
|
|
|
|
"name": self.tuya_device.name,
|
|
|
|
"model": self.tuya_device.product_name,
|
|
|
|
}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def available(self) -> bool:
|
|
|
|
"""Return if the device is available."""
|
|
|
|
return self.tuya_device.online
|
|
|
|
|
|
|
|
async def async_added_to_hass(self):
|
|
|
|
"""Call when entity is added to hass."""
|
|
|
|
self.async_on_remove(
|
|
|
|
async_dispatcher_connect(
|
|
|
|
self.hass,
|
|
|
|
f"{TUYA_HA_SIGNAL_UPDATE_ENTITY}_{self.tuya_device.id}",
|
|
|
|
self.async_write_ha_state,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
def _send_command(self, commands: list[dict[str, Any]]) -> None:
|
|
|
|
"""Send command to the device."""
|
|
|
|
self.tuya_device_manager.send_commands(self.tuya_device.id, commands)
|