1
mirror of https://github.com/home-assistant/core synced 2024-10-07 10:13:38 +02:00
ha-core/homeassistant/components/tuya/base.py

99 lines
2.7 KiB
Python
Raw Normal View History

"""Tuya Home Assistant Base Device Model."""
from __future__ import annotations
from dataclasses import dataclass
import json
import logging
from typing import Any
from tuya_iot import TuyaDevice, TuyaDeviceManager
from homeassistant.helpers.dispatcher import async_dispatcher_connect
2021-10-12 12:25:03 +02:00
from homeassistant.helpers.entity import DeviceInfo, Entity
from .const import DOMAIN, TUYA_HA_SIGNAL_UPDATE_ENTITY
_LOGGER = logging.getLogger(__name__)
@dataclass
class IntegerTypeData:
"""Integer Type Data."""
min: int
max: int
unit: str
scale: float
step: float
@staticmethod
def from_json(data: str) -> IntegerTypeData:
"""Load JSON string and return a IntegerTypeData object."""
return IntegerTypeData(**json.loads(data))
@dataclass
class EnumTypeData:
"""Enum Type Data."""
range: list[str]
@staticmethod
def from_json(data: str) -> EnumTypeData:
"""Load JSON string and return a EnumTypeData object."""
return EnumTypeData(**json.loads(data))
class TuyaHaEntity(Entity):
"""Tuya base device."""
_attr_should_poll = False
def __init__(self, device: TuyaDevice, device_manager: TuyaDeviceManager) -> None:
"""Init TuyaHaEntity."""
self._attr_unique_id = f"tuya.{device.id}"
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
2021-10-12 12:25:03 +02:00
def device_info(self) -> DeviceInfo:
"""Return a device description for device registry."""
2021-10-12 12:25:03 +02:00
return DeviceInfo(
identifiers={(DOMAIN, 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
2021-10-12 12:25:03 +02:00
async def async_added_to_hass(self) -> None:
"""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."""
_LOGGER.debug(
"Sending commands for device %s: %s", self.tuya_device.id, commands
)
self.tuya_device_manager.send_commands(self.tuya_device.id, commands)
@staticmethod
def scale(value: float | int, scale: float | int) -> float:
"""Scale a value."""
return value * 1.0 / (10 ** scale)