* Delete hassfest.yaml * Update and rename ci.yaml to tox.yaml * Create combined.yaml * Update hacs.json * Update README.md * Update combined.yaml * Remove unused import * Restored wrongly deleted line in cover.py * Update config_flow.py * Update __init__.py Co-authored-by: Pierre Ståhl <pierre.staahl@gmail.com> Co-authored-by: rospogrigio <49229287+rospogrigio@users.noreply.github.com>
112 lines
3.2 KiB
Python
112 lines
3.2 KiB
Python
"""Platform to locally control Tuya-based fan devices."""
|
|
import logging
|
|
from functools import partial
|
|
|
|
from homeassistant.components.fan import (
|
|
DOMAIN,
|
|
SPEED_HIGH,
|
|
SPEED_LOW,
|
|
SPEED_MEDIUM,
|
|
SPEED_OFF,
|
|
SUPPORT_OSCILLATE,
|
|
SUPPORT_SET_SPEED,
|
|
FanEntity,
|
|
)
|
|
|
|
from .common import LocalTuyaEntity, async_setup_entry
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def flow_schema(dps):
|
|
"""Return schema used in config flow."""
|
|
return {}
|
|
|
|
|
|
class LocaltuyaFan(LocalTuyaEntity, FanEntity):
|
|
"""Representation of a Tuya fan."""
|
|
|
|
def __init__(
|
|
self,
|
|
device,
|
|
config_entry,
|
|
fanid,
|
|
**kwargs,
|
|
):
|
|
"""Initialize the entity."""
|
|
super().__init__(device, config_entry, fanid, **kwargs)
|
|
self._is_on = False
|
|
self._speed = None
|
|
self._oscillating = None
|
|
|
|
@property
|
|
def oscillating(self):
|
|
"""Return current oscillating status."""
|
|
return self._oscillating
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Check if Tuya fan is on."""
|
|
return self._is_on
|
|
|
|
@property
|
|
def speed(self) -> str:
|
|
"""Return the current speed."""
|
|
return self._speed
|
|
|
|
@property
|
|
def speed_list(self) -> list:
|
|
"""Get the list of available speeds."""
|
|
return [SPEED_OFF, SPEED_LOW, SPEED_MEDIUM, SPEED_HIGH]
|
|
|
|
async def async_turn_on(self, speed: str = None, **kwargs) -> None:
|
|
"""Turn on the entity."""
|
|
await self._device.set_dp(True, "1")
|
|
if speed is not None:
|
|
await self.async_set_speed(speed)
|
|
else:
|
|
self.schedule_update_ha_state()
|
|
|
|
async def async_turn_off(self, **kwargs) -> None:
|
|
"""Turn off the entity."""
|
|
await self._device.set_dp(False, "1")
|
|
self.schedule_update_ha_state()
|
|
|
|
async def async_set_speed(self, speed: str) -> None:
|
|
"""Set the speed of the fan."""
|
|
if speed == SPEED_OFF:
|
|
await self._device.set_dp(False, "1")
|
|
elif speed == SPEED_LOW:
|
|
await self._device.set_dp("1", "2")
|
|
elif speed == SPEED_MEDIUM:
|
|
await self._device.set_dp("2", "2")
|
|
elif speed == SPEED_HIGH:
|
|
await self._device.set_dp("3", "2")
|
|
self.schedule_update_ha_state()
|
|
|
|
async def async_oscillate(self, oscillating: bool) -> None:
|
|
"""Set oscillation."""
|
|
await self._device.set_dp(oscillating, "8")
|
|
self.schedule_update_ha_state()
|
|
|
|
@property
|
|
def supported_features(self) -> int:
|
|
"""Flag supported features."""
|
|
return SUPPORT_SET_SPEED | SUPPORT_OSCILLATE
|
|
|
|
def status_updated(self):
|
|
"""Get state of Tuya fan."""
|
|
self._is_on = self._status["dps"]["1"]
|
|
if not self._status["dps"]["1"]:
|
|
self._speed = SPEED_OFF
|
|
elif self._status["dps"]["2"] == "1":
|
|
self._speed = SPEED_LOW
|
|
elif self._status["dps"]["2"] == "2":
|
|
self._speed = SPEED_MEDIUM
|
|
elif self._status["dps"]["2"] == "3":
|
|
self._speed = SPEED_HIGH
|
|
self._oscillating = self._status["dps"]["8"]
|
|
|
|
|
|
async_setup_entry = partial(async_setup_entry, DOMAIN, LocaltuyaFan, flow_schema)
|