mirror of
https://github.com/home-assistant/core.git
synced 2025-07-26 06:37:52 +00:00
Create KNX fan entities directly from config (#50702)
This commit is contained in:
parent
0556c35e24
commit
1e11bfae05
@ -8,7 +8,6 @@ from xknx.devices import (
|
|||||||
ClimateMode as XknxClimateMode,
|
ClimateMode as XknxClimateMode,
|
||||||
Cover as XknxCover,
|
Cover as XknxCover,
|
||||||
Device as XknxDevice,
|
Device as XknxDevice,
|
||||||
Fan as XknxFan,
|
|
||||||
Light as XknxLight,
|
Light as XknxLight,
|
||||||
Notification as XknxNotification,
|
Notification as XknxNotification,
|
||||||
Sensor as XknxSensor,
|
Sensor as XknxSensor,
|
||||||
@ -23,7 +22,6 @@ from .schema import (
|
|||||||
BinarySensorSchema,
|
BinarySensorSchema,
|
||||||
ClimateSchema,
|
ClimateSchema,
|
||||||
CoverSchema,
|
CoverSchema,
|
||||||
FanSchema,
|
|
||||||
LightSchema,
|
LightSchema,
|
||||||
SensorSchema,
|
SensorSchema,
|
||||||
WeatherSchema,
|
WeatherSchema,
|
||||||
@ -57,9 +55,6 @@ def create_knx_device(
|
|||||||
if platform is SupportedPlatforms.WEATHER:
|
if platform is SupportedPlatforms.WEATHER:
|
||||||
return _create_weather(knx_module, config)
|
return _create_weather(knx_module, config)
|
||||||
|
|
||||||
if platform is SupportedPlatforms.FAN:
|
|
||||||
return _create_fan(knx_module, config)
|
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
@ -335,20 +330,3 @@ def _create_weather(knx_module: XKNX, config: ConfigType) -> XknxWeather:
|
|||||||
),
|
),
|
||||||
group_address_humidity=config.get(WeatherSchema.CONF_KNX_HUMIDITY_ADDRESS),
|
group_address_humidity=config.get(WeatherSchema.CONF_KNX_HUMIDITY_ADDRESS),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _create_fan(knx_module: XKNX, config: ConfigType) -> XknxFan:
|
|
||||||
"""Return a KNX Fan device to be used within XKNX."""
|
|
||||||
|
|
||||||
fan = XknxFan(
|
|
||||||
knx_module,
|
|
||||||
name=config[CONF_NAME],
|
|
||||||
group_address_speed=config.get(KNX_ADDRESS),
|
|
||||||
group_address_speed_state=config.get(FanSchema.CONF_STATE_ADDRESS),
|
|
||||||
group_address_oscillation=config.get(FanSchema.CONF_OSCILLATION_ADDRESS),
|
|
||||||
group_address_oscillation_state=config.get(
|
|
||||||
FanSchema.CONF_OSCILLATION_STATE_ADDRESS
|
|
||||||
),
|
|
||||||
max_step=config.get(FanSchema.CONF_MAX_STEP),
|
|
||||||
)
|
|
||||||
return fan
|
|
||||||
|
@ -4,9 +4,11 @@ from __future__ import annotations
|
|||||||
import math
|
import math
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
|
from xknx import XKNX
|
||||||
from xknx.devices import Fan as XknxFan
|
from xknx.devices import Fan as XknxFan
|
||||||
|
|
||||||
from homeassistant.components.fan import SUPPORT_OSCILLATE, SUPPORT_SET_SPEED, FanEntity
|
from homeassistant.components.fan import SUPPORT_OSCILLATE, SUPPORT_SET_SPEED, FanEntity
|
||||||
|
from homeassistant.const import CONF_NAME
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
||||||
@ -16,8 +18,9 @@ from homeassistant.util.percentage import (
|
|||||||
ranged_value_to_percentage,
|
ranged_value_to_percentage,
|
||||||
)
|
)
|
||||||
|
|
||||||
from .const import DOMAIN
|
from .const import DOMAIN, KNX_ADDRESS
|
||||||
from .knx_entity import KnxEntity
|
from .knx_entity import KnxEntity
|
||||||
|
from .schema import FanSchema
|
||||||
|
|
||||||
DEFAULT_PERCENTAGE = 50
|
DEFAULT_PERCENTAGE = 50
|
||||||
|
|
||||||
@ -29,25 +32,44 @@ async def async_setup_platform(
|
|||||||
discovery_info: DiscoveryInfoType | None = None,
|
discovery_info: DiscoveryInfoType | None = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Set up fans for KNX platform."""
|
"""Set up fans for KNX platform."""
|
||||||
|
if not discovery_info or not discovery_info["platform_config"]:
|
||||||
|
return
|
||||||
|
|
||||||
|
platform_config = discovery_info["platform_config"]
|
||||||
|
xknx: XKNX = hass.data[DOMAIN].xknx
|
||||||
|
|
||||||
entities = []
|
entities = []
|
||||||
for device in hass.data[DOMAIN].xknx.devices:
|
for entity_config in platform_config:
|
||||||
if isinstance(device, XknxFan):
|
entities.append(KNXFan(xknx, entity_config))
|
||||||
entities.append(KNXFan(device))
|
|
||||||
async_add_entities(entities)
|
async_add_entities(entities)
|
||||||
|
|
||||||
|
|
||||||
class KNXFan(KnxEntity, FanEntity):
|
class KNXFan(KnxEntity, FanEntity):
|
||||||
"""Representation of a KNX fan."""
|
"""Representation of a KNX fan."""
|
||||||
|
|
||||||
def __init__(self, device: XknxFan) -> None:
|
def __init__(self, xknx: XKNX, config: ConfigType) -> None:
|
||||||
"""Initialize of KNX fan."""
|
"""Initialize of KNX fan."""
|
||||||
self._device: XknxFan
|
self._device: XknxFan
|
||||||
super().__init__(device)
|
max_step = config.get(FanSchema.CONF_MAX_STEP)
|
||||||
|
super().__init__(
|
||||||
|
device=XknxFan(
|
||||||
|
xknx,
|
||||||
|
name=config[CONF_NAME],
|
||||||
|
group_address_speed=config.get(KNX_ADDRESS),
|
||||||
|
group_address_speed_state=config.get(FanSchema.CONF_STATE_ADDRESS),
|
||||||
|
group_address_oscillation=config.get(
|
||||||
|
FanSchema.CONF_OSCILLATION_ADDRESS
|
||||||
|
),
|
||||||
|
group_address_oscillation_state=config.get(
|
||||||
|
FanSchema.CONF_OSCILLATION_STATE_ADDRESS
|
||||||
|
),
|
||||||
|
max_step=max_step,
|
||||||
|
)
|
||||||
|
)
|
||||||
self._unique_id = f"{self._device.speed.group_address}"
|
self._unique_id = f"{self._device.speed.group_address}"
|
||||||
self._step_range: tuple[int, int] | None = None
|
# FanSpeedMode.STEP if max_step is set
|
||||||
if device.max_step:
|
self._step_range: tuple[int, int] | None = (1, max_step) if max_step else None
|
||||||
# FanSpeedMode.STEP:
|
|
||||||
self._step_range = (1, device.max_step)
|
|
||||||
|
|
||||||
async def async_set_percentage(self, percentage: int) -> None:
|
async def async_set_percentage(self, percentage: int) -> None:
|
||||||
"""Set the speed of the fan, as a percentage."""
|
"""Set the speed of the fan, as a percentage."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user