2019-04-03 15:40:03 +00:00
|
|
|
"""Demo fan platform that has a fake fan."""
|
2021-03-17 22:43:55 +00:00
|
|
|
from __future__ import annotations
|
2021-01-27 23:44:36 +00:00
|
|
|
|
2019-03-24 03:22:35 +00:00
|
|
|
from homeassistant.components.fan import (
|
2019-07-31 19:25:30 +00:00
|
|
|
SUPPORT_DIRECTION,
|
|
|
|
SUPPORT_OSCILLATE,
|
2021-01-27 23:44:36 +00:00
|
|
|
SUPPORT_PRESET_MODE,
|
2019-07-31 19:25:30 +00:00
|
|
|
SUPPORT_SET_SPEED,
|
|
|
|
FanEntity,
|
|
|
|
)
|
2021-01-27 23:44:36 +00:00
|
|
|
|
|
|
|
PRESET_MODE_AUTO = "auto"
|
|
|
|
PRESET_MODE_SMART = "smart"
|
2021-02-06 11:48:18 +00:00
|
|
|
PRESET_MODE_SLEEP = "sleep"
|
|
|
|
PRESET_MODE_ON = "on"
|
2019-03-21 05:56:46 +00:00
|
|
|
|
2017-06-12 05:12:56 +00:00
|
|
|
FULL_SUPPORT = SUPPORT_SET_SPEED | SUPPORT_OSCILLATE | SUPPORT_DIRECTION
|
|
|
|
LIMITED_SUPPORT = SUPPORT_SET_SPEED
|
2016-08-27 20:53:12 +00:00
|
|
|
|
|
|
|
|
2019-11-13 15:37:31 +00:00
|
|
|
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
|
2017-04-30 05:04:49 +00:00
|
|
|
"""Set up the demo fan platform."""
|
2019-11-13 15:37:31 +00:00
|
|
|
async_add_entities(
|
2019-07-31 19:25:30 +00:00
|
|
|
[
|
2021-12-04 05:57:46 +00:00
|
|
|
DemoPercentageFan(
|
2021-01-27 23:44:36 +00:00
|
|
|
hass,
|
|
|
|
"fan1",
|
|
|
|
"Living Room Fan",
|
|
|
|
FULL_SUPPORT,
|
|
|
|
[
|
|
|
|
PRESET_MODE_AUTO,
|
|
|
|
PRESET_MODE_SMART,
|
2021-02-06 11:48:18 +00:00
|
|
|
PRESET_MODE_SLEEP,
|
|
|
|
PRESET_MODE_ON,
|
2021-01-27 23:44:36 +00:00
|
|
|
],
|
|
|
|
),
|
2021-12-04 05:57:46 +00:00
|
|
|
DemoPercentageFan(
|
2021-01-27 23:44:36 +00:00
|
|
|
hass,
|
|
|
|
"fan2",
|
|
|
|
"Ceiling Fan",
|
|
|
|
LIMITED_SUPPORT,
|
|
|
|
None,
|
|
|
|
),
|
|
|
|
AsyncDemoPercentageFan(
|
|
|
|
hass,
|
|
|
|
"fan3",
|
|
|
|
"Percentage Full Fan",
|
|
|
|
FULL_SUPPORT,
|
2021-02-06 11:48:18 +00:00
|
|
|
[
|
|
|
|
PRESET_MODE_AUTO,
|
|
|
|
PRESET_MODE_SMART,
|
|
|
|
PRESET_MODE_SLEEP,
|
|
|
|
PRESET_MODE_ON,
|
|
|
|
],
|
2021-01-27 23:44:36 +00:00
|
|
|
),
|
|
|
|
DemoPercentageFan(
|
|
|
|
hass,
|
|
|
|
"fan4",
|
|
|
|
"Percentage Limited Fan",
|
|
|
|
LIMITED_SUPPORT,
|
2021-02-06 11:48:18 +00:00
|
|
|
[
|
|
|
|
PRESET_MODE_AUTO,
|
|
|
|
PRESET_MODE_SMART,
|
|
|
|
PRESET_MODE_SLEEP,
|
|
|
|
PRESET_MODE_ON,
|
|
|
|
],
|
2021-01-27 23:44:36 +00:00
|
|
|
),
|
|
|
|
AsyncDemoPercentageFan(
|
|
|
|
hass,
|
|
|
|
"fan5",
|
|
|
|
"Preset Only Limited Fan",
|
|
|
|
SUPPORT_PRESET_MODE,
|
2021-02-06 11:48:18 +00:00
|
|
|
[
|
|
|
|
PRESET_MODE_AUTO,
|
|
|
|
PRESET_MODE_SMART,
|
|
|
|
PRESET_MODE_SLEEP,
|
|
|
|
PRESET_MODE_ON,
|
|
|
|
],
|
2021-01-27 23:44:36 +00:00
|
|
|
),
|
2019-07-31 19:25:30 +00:00
|
|
|
]
|
|
|
|
)
|
2016-08-27 20:53:12 +00:00
|
|
|
|
|
|
|
|
2019-11-13 15:37:31 +00:00
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
|
|
"""Set up the Demo config entry."""
|
|
|
|
await async_setup_platform(hass, {}, async_add_entities)
|
|
|
|
|
|
|
|
|
2021-01-27 23:44:36 +00:00
|
|
|
class BaseDemoFan(FanEntity):
|
|
|
|
"""A demonstration fan component that uses legacy fan speeds."""
|
2016-08-27 20:53:12 +00:00
|
|
|
|
2020-09-04 16:23:53 +00:00
|
|
|
def __init__(
|
2021-01-27 23:44:36 +00:00
|
|
|
self,
|
|
|
|
hass,
|
|
|
|
unique_id: str,
|
|
|
|
name: str,
|
|
|
|
supported_features: int,
|
2021-03-17 22:43:55 +00:00
|
|
|
preset_modes: list[str] | None,
|
2020-09-04 16:23:53 +00:00
|
|
|
) -> None:
|
2016-08-27 20:53:12 +00:00
|
|
|
"""Initialize the entity."""
|
|
|
|
self.hass = hass
|
2020-09-04 16:23:53 +00:00
|
|
|
self._unique_id = unique_id
|
2017-06-12 05:12:56 +00:00
|
|
|
self._supported_features = supported_features
|
2021-02-06 11:48:18 +00:00
|
|
|
self._percentage = None
|
2021-01-27 23:44:36 +00:00
|
|
|
self._preset_modes = preset_modes
|
|
|
|
self._preset_mode = None
|
2020-05-06 07:58:07 +00:00
|
|
|
self._oscillating = None
|
2019-09-02 04:42:57 +00:00
|
|
|
self._direction = None
|
2016-08-27 20:53:12 +00:00
|
|
|
self._name = name
|
2017-06-12 05:12:56 +00:00
|
|
|
if supported_features & SUPPORT_OSCILLATE:
|
2020-05-06 07:58:07 +00:00
|
|
|
self._oscillating = False
|
2017-06-12 05:12:56 +00:00
|
|
|
if supported_features & SUPPORT_DIRECTION:
|
2019-09-02 04:42:57 +00:00
|
|
|
self._direction = "forward"
|
2017-06-12 05:12:56 +00:00
|
|
|
|
2020-09-04 16:23:53 +00:00
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return the unique id."""
|
|
|
|
return self._unique_id
|
|
|
|
|
2016-08-27 20:53:12 +00:00
|
|
|
@property
|
|
|
|
def name(self) -> str:
|
|
|
|
"""Get entity name."""
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
|
|
|
"""No polling needed for a demo fan."""
|
|
|
|
return False
|
|
|
|
|
2021-01-27 23:44:36 +00:00
|
|
|
@property
|
|
|
|
def current_direction(self) -> str:
|
|
|
|
"""Fan direction."""
|
|
|
|
return self._direction
|
|
|
|
|
|
|
|
@property
|
|
|
|
def oscillating(self) -> bool:
|
|
|
|
"""Oscillating."""
|
|
|
|
return self._oscillating
|
|
|
|
|
|
|
|
@property
|
|
|
|
def supported_features(self) -> int:
|
|
|
|
"""Flag supported features."""
|
|
|
|
return self._supported_features
|
|
|
|
|
|
|
|
|
|
|
|
class DemoPercentageFan(BaseDemoFan, FanEntity):
|
|
|
|
"""A demonstration fan component that uses percentages."""
|
|
|
|
|
2017-01-14 06:08:13 +00:00
|
|
|
@property
|
2021-03-17 22:43:55 +00:00
|
|
|
def percentage(self) -> int | None:
|
2021-01-27 23:44:36 +00:00
|
|
|
"""Return the current speed."""
|
|
|
|
return self._percentage
|
|
|
|
|
2021-02-19 07:05:09 +00:00
|
|
|
@property
|
2021-02-20 05:57:21 +00:00
|
|
|
def speed_count(self) -> int:
|
2021-02-19 07:05:09 +00:00
|
|
|
"""Return the number of speeds the fan supports."""
|
|
|
|
return 3
|
|
|
|
|
2021-01-27 23:44:36 +00:00
|
|
|
def set_percentage(self, percentage: int) -> None:
|
|
|
|
"""Set the speed of the fan, as a percentage."""
|
|
|
|
self._percentage = percentage
|
|
|
|
self._preset_mode = None
|
|
|
|
self.schedule_update_ha_state()
|
2017-01-14 06:08:13 +00:00
|
|
|
|
2020-05-06 07:58:07 +00:00
|
|
|
@property
|
2021-03-17 22:43:55 +00:00
|
|
|
def preset_mode(self) -> str | None:
|
2021-01-27 23:44:36 +00:00
|
|
|
"""Return the current preset mode, e.g., auto, smart, interval, favorite."""
|
|
|
|
return self._preset_mode
|
2020-05-06 07:58:07 +00:00
|
|
|
|
2016-08-27 20:53:12 +00:00
|
|
|
@property
|
2021-03-17 22:43:55 +00:00
|
|
|
def preset_modes(self) -> list[str] | None:
|
2021-01-27 23:44:36 +00:00
|
|
|
"""Return a list of available preset modes."""
|
|
|
|
return self._preset_modes
|
|
|
|
|
|
|
|
def set_preset_mode(self, preset_mode: str) -> None:
|
|
|
|
"""Set new preset mode."""
|
2021-12-04 05:57:46 +00:00
|
|
|
if self.preset_modes and preset_mode in self.preset_modes:
|
2021-01-27 23:44:36 +00:00
|
|
|
self._preset_mode = preset_mode
|
|
|
|
self._percentage = None
|
|
|
|
self.schedule_update_ha_state()
|
|
|
|
else:
|
|
|
|
raise ValueError(f"Invalid preset mode: {preset_mode}")
|
|
|
|
|
|
|
|
def turn_on(
|
|
|
|
self,
|
|
|
|
speed: str = None,
|
|
|
|
percentage: int = None,
|
|
|
|
preset_mode: str = None,
|
|
|
|
**kwargs,
|
|
|
|
) -> None:
|
|
|
|
"""Turn on the entity."""
|
|
|
|
if preset_mode:
|
|
|
|
self.set_preset_mode(preset_mode)
|
|
|
|
return
|
|
|
|
|
|
|
|
if percentage is None:
|
|
|
|
percentage = 67
|
|
|
|
|
|
|
|
self.set_percentage(percentage)
|
|
|
|
|
|
|
|
def turn_off(self, **kwargs) -> None:
|
|
|
|
"""Turn off the entity."""
|
|
|
|
self.set_percentage(0)
|
|
|
|
|
2021-12-04 05:57:46 +00:00
|
|
|
def set_direction(self, direction: str) -> None:
|
|
|
|
"""Set the direction of the fan."""
|
|
|
|
self._direction = direction
|
|
|
|
self.schedule_update_ha_state()
|
|
|
|
|
|
|
|
def oscillate(self, oscillating: bool) -> None:
|
|
|
|
"""Set oscillation."""
|
|
|
|
self._oscillating = oscillating
|
|
|
|
self.schedule_update_ha_state()
|
|
|
|
|
2021-01-27 23:44:36 +00:00
|
|
|
|
|
|
|
class AsyncDemoPercentageFan(BaseDemoFan, FanEntity):
|
|
|
|
"""An async demonstration fan component that uses percentages."""
|
|
|
|
|
|
|
|
@property
|
2021-03-17 22:43:55 +00:00
|
|
|
def percentage(self) -> int | None:
|
2021-01-27 23:44:36 +00:00
|
|
|
"""Return the current speed."""
|
|
|
|
return self._percentage
|
|
|
|
|
2021-02-19 07:05:09 +00:00
|
|
|
@property
|
2021-02-20 05:57:21 +00:00
|
|
|
def speed_count(self) -> int:
|
2021-02-19 07:05:09 +00:00
|
|
|
"""Return the number of speeds the fan supports."""
|
|
|
|
return 3
|
|
|
|
|
2021-01-27 23:44:36 +00:00
|
|
|
async def async_set_percentage(self, percentage: int) -> None:
|
|
|
|
"""Set the speed of the fan, as a percentage."""
|
|
|
|
self._percentage = percentage
|
|
|
|
self._preset_mode = None
|
|
|
|
self.async_write_ha_state()
|
|
|
|
|
|
|
|
@property
|
2021-03-17 22:43:55 +00:00
|
|
|
def preset_mode(self) -> str | None:
|
2021-01-27 23:44:36 +00:00
|
|
|
"""Return the current preset mode, e.g., auto, smart, interval, favorite."""
|
|
|
|
return self._preset_mode
|
|
|
|
|
|
|
|
@property
|
2021-03-17 22:43:55 +00:00
|
|
|
def preset_modes(self) -> list[str] | None:
|
2021-01-27 23:44:36 +00:00
|
|
|
"""Return a list of available preset modes."""
|
|
|
|
return self._preset_modes
|
|
|
|
|
|
|
|
async def async_set_preset_mode(self, preset_mode: str) -> None:
|
|
|
|
"""Set new preset mode."""
|
|
|
|
if preset_mode not in self.preset_modes:
|
|
|
|
raise ValueError(
|
|
|
|
"{preset_mode} is not a valid preset_mode: {self.preset_modes}"
|
|
|
|
)
|
|
|
|
self._preset_mode = preset_mode
|
|
|
|
self._percentage = None
|
|
|
|
self.async_write_ha_state()
|
|
|
|
|
|
|
|
async def async_turn_on(
|
|
|
|
self,
|
|
|
|
speed: str = None,
|
|
|
|
percentage: int = None,
|
|
|
|
preset_mode: str = None,
|
|
|
|
**kwargs,
|
|
|
|
) -> None:
|
|
|
|
"""Turn on the entity."""
|
|
|
|
if preset_mode:
|
|
|
|
await self.async_set_preset_mode(preset_mode)
|
|
|
|
return
|
|
|
|
|
|
|
|
if percentage is None:
|
|
|
|
percentage = 67
|
|
|
|
|
|
|
|
await self.async_set_percentage(percentage)
|
|
|
|
|
|
|
|
async def async_turn_off(self, **kwargs) -> None:
|
|
|
|
"""Turn off the entity."""
|
|
|
|
await self.async_oscillate(False)
|
|
|
|
await self.async_set_percentage(0)
|
|
|
|
|
|
|
|
async def async_set_direction(self, direction: str) -> None:
|
|
|
|
"""Set the direction of the fan."""
|
|
|
|
self._direction = direction
|
|
|
|
self.async_write_ha_state()
|
|
|
|
|
|
|
|
async def async_oscillate(self, oscillating: bool) -> None:
|
|
|
|
"""Set oscillation."""
|
|
|
|
self._oscillating = oscillating
|
|
|
|
self.async_write_ha_state()
|