forked from mileperhour/localtuya-homeassistant
-
Notifications
You must be signed in to change notification settings - Fork 562
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add platform specific DPS to requests
- Loading branch information
1 parent
8cc978a
commit 8456c60
Showing
7 changed files
with
135 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,113 +1,113 @@ | ||
"""Platform to locally control Tuya-based fan devices.""" | ||
import logging | ||
from functools import partial | ||
|
||
from homeassistant.components.fan import ( | ||
FanEntity, | ||
DOMAIN, | ||
SPEED_OFF, | ||
SPEED_LOW, | ||
SPEED_MEDIUM, | ||
SPEED_HIGH, | ||
SUPPORT_SET_SPEED, | ||
SUPPORT_OSCILLATE, | ||
) | ||
|
||
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 = SPEED_OFF | ||
self._oscillating = False | ||
|
||
@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] | ||
|
||
def turn_on(self, speed: str = None, **kwargs) -> None: | ||
"""Turn on the entity.""" | ||
self._device.set_dps(True, "1") | ||
if speed is not None: | ||
self.set_speed(speed) | ||
else: | ||
self.schedule_update_ha_state() | ||
|
||
def turn_off(self, **kwargs) -> None: | ||
"""Turn off the entity.""" | ||
self._device.set_dps(False, "1") | ||
self.schedule_update_ha_state() | ||
|
||
def set_speed(self, speed: str) -> None: | ||
"""Set the speed of the fan.""" | ||
self._speed = speed | ||
if speed == SPEED_OFF: | ||
self._device.set_dps(False, "1") | ||
elif speed == SPEED_LOW: | ||
self._device.set_dps("1", "2") | ||
elif speed == SPEED_MEDIUM: | ||
self._device.set_dps("2", "2") | ||
elif speed == SPEED_HIGH: | ||
self._device.set_dps("3", "2") | ||
self.schedule_update_ha_state() | ||
|
||
def oscillate(self, oscillating: bool) -> None: | ||
"""Set oscillation.""" | ||
self._oscillating = oscillating | ||
self._device.set_value("8", oscillating) | ||
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) | ||
"""Platform to locally control Tuya-based fan devices.""" | ||
import logging | ||
from functools import partial | ||
|
||
from homeassistant.components.fan import ( | ||
FanEntity, | ||
DOMAIN, | ||
SPEED_OFF, | ||
SPEED_LOW, | ||
SPEED_MEDIUM, | ||
SPEED_HIGH, | ||
SUPPORT_SET_SPEED, | ||
SUPPORT_OSCILLATE, | ||
) | ||
|
||
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 = SPEED_OFF | ||
self._oscillating = False | ||
|
||
@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] | ||
|
||
def turn_on(self, speed: str = None, **kwargs) -> None: | ||
"""Turn on the entity.""" | ||
self._device.set_dps(True, "1") | ||
if speed is not None: | ||
self.set_speed(speed) | ||
else: | ||
self.schedule_update_ha_state() | ||
|
||
def turn_off(self, **kwargs) -> None: | ||
"""Turn off the entity.""" | ||
self._device.set_dps(False, "1") | ||
self.schedule_update_ha_state() | ||
|
||
def set_speed(self, speed: str) -> None: | ||
"""Set the speed of the fan.""" | ||
self._speed = speed | ||
if speed == SPEED_OFF: | ||
self._device.set_dps(False, "1") | ||
elif speed == SPEED_LOW: | ||
self._device.set_dps("1", "2") | ||
elif speed == SPEED_MEDIUM: | ||
self._device.set_dps("2", "2") | ||
elif speed == SPEED_HIGH: | ||
self._device.set_dps("3", "2") | ||
self.schedule_update_ha_state() | ||
|
||
def oscillate(self, oscillating: bool) -> None: | ||
"""Set oscillation.""" | ||
self._oscillating = oscillating | ||
self._device.set_value("8", oscillating) | ||
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters