Files

139 lines
5.1 KiB
Python
Raw Permalink Normal View History

2023-09-10 12:08:27 +08:00
from homeassistant.components.fan import FanEntity, FanEntityFeature
2025-09-12 00:15:14 +08:00
from homeassistant.const import Platform
from .const import DOMAIN
from .midea_entity import MideaEntity
2025-09-12 00:15:14 +08:00
from . import load_device_config
2023-09-10 12:08:27 +08:00
async def async_setup_entry(hass, config_entry, async_add_entities):
2025-09-12 00:15:14 +08:00
account_bucket = hass.data.get(DOMAIN, {}).get("accounts", {}).get(config_entry.entry_id)
if not account_bucket:
async_add_entities([])
return
device_list = account_bucket.get("device_list", {})
coordinator_map = account_bucket.get("coordinator_map", {})
2023-09-10 12:08:27 +08:00
devs = []
2025-09-12 00:15:14 +08:00
for device_id, info in device_list.items():
device_type = info.get("type")
sn8 = info.get("sn8")
2025-09-17 23:15:15 +08:00
config = await load_device_config(hass, device_type, sn8) or {}
2025-09-12 00:15:14 +08:00
entities_cfg = (config.get("entities") or {}).get(Platform.FAN, {})
manufacturer = config.get("manufacturer")
rationale = config.get("rationale")
coordinator = coordinator_map.get(device_id)
device = coordinator.device if coordinator else None
for entity_key, ecfg in entities_cfg.items():
devs.append(MideaFanEntity(coordinator, device, manufacturer, rationale, entity_key, ecfg))
2023-09-10 12:08:27 +08:00
async_add_entities(devs)
class MideaFanEntity(MideaEntity, FanEntity):
def __init__(self, coordinator, device, manufacturer, rationale, entity_key, config):
super().__init__(
coordinator,
device.device_id,
device.device_name,
f"T0x{device.device_type:02X}",
device.sn,
device.sn8,
device.model,
entity_key,
device=device,
manufacturer=manufacturer,
rationale=rationale,
config=config,
)
self._device = device
self._manufacturer = manufacturer
self._rationale = rationale
self._config = config
2023-09-10 12:08:27 +08:00
self._key_power = self._config.get("power")
self._key_preset_modes = self._config.get("preset_modes")
self._key_speeds = self._config.get("speeds")
self._key_oscillate = self._config.get("oscillate")
self._key_directions = self._config.get("directions")
self._attr_speed_count = len(self._key_speeds) if self._key_speeds else 0
@property
def supported_features(self):
features = 0
if self._key_preset_modes is not None and len(self._key_preset_modes) > 0:
features |= FanEntityFeature.PRESET_MODE
if self._key_speeds is not None and len(self._key_speeds) > 0:
features |= FanEntityFeature.SET_SPEED
if self._key_oscillate is not None:
features |= FanEntityFeature.OSCILLATE
if self._key_directions is not None and len(self._key_directions) > 0:
features |= FanEntityFeature.DIRECTION
return features
@property
def is_on(self) -> bool:
return self._get_status_on_off(self._key_power)
@property
def preset_modes(self):
return list(self._key_preset_modes.keys())
@property
def preset_mode(self):
return self._dict_get_selected(self._key_preset_modes)
@property
def percentage(self):
index = self._list_get_selected(self._key_speeds)
if index is None:
return None
return round((index + 1) * 100 / self._attr_speed_count)
@property
def oscillating(self):
return self._get_status_on_off(self._key_oscillate)
async def async_turn_on(
2023-09-10 12:08:27 +08:00
self,
percentage: int | None = None,
preset_mode: str | None = None,
**kwargs,
):
new_status = {}
if preset_mode is not None and self._key_preset_modes is not None:
new_status.update(self._key_preset_modes.get(preset_mode, {}))
if percentage is not None and self._key_speeds:
2023-09-10 12:08:27 +08:00
index = round(percentage * self._attr_speed_count / 100) - 1
index = max(0, min(index, len(self._key_speeds) - 1))
2023-09-10 12:08:27 +08:00
new_status.update(self._key_speeds[index])
if self._key_power is not None:
new_status[self._key_power] = True
if new_status:
await self.async_set_attributes(new_status)
2023-09-10 12:08:27 +08:00
async def async_turn_off(self):
await self._async_set_status_on_off(self._key_power, False)
2023-09-10 12:08:27 +08:00
async def async_set_percentage(self, percentage: int):
if not self._key_speeds:
return
2023-09-10 12:08:27 +08:00
index = round(percentage * self._attr_speed_count / 100)
if 0 < index <= len(self._key_speeds):
2023-09-10 12:08:27 +08:00
new_status = self._key_speeds[index - 1]
await self.async_set_attributes(new_status)
2023-09-10 12:08:27 +08:00
async def async_set_preset_mode(self, preset_mode: str):
if not self._key_preset_modes:
return
2023-09-10 12:08:27 +08:00
new_status = self._key_preset_modes.get(preset_mode)
if new_status:
await self.async_set_attributes(new_status)
2023-09-10 12:08:27 +08:00
async def async_oscillate(self, oscillating: bool):
2023-09-10 12:08:27 +08:00
if self.oscillating != oscillating:
await self._async_set_status_on_off(self._key_oscillate, oscillating)
2023-09-10 12:08:27 +08:00
def update_state(self, status):
try:
self.schedule_update_ha_state()
except Exception:
2023-09-10 12:08:27 +08:00
pass