mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 10:47:51 +00:00
Add Rituals number platform (#49723)
This commit is contained in:
parent
ae86e96d34
commit
d0a8e27036
@ -846,6 +846,7 @@ omit =
|
|||||||
homeassistant/components/ripple/sensor.py
|
homeassistant/components/ripple/sensor.py
|
||||||
homeassistant/components/rituals_perfume_genie/binary_sensor.py
|
homeassistant/components/rituals_perfume_genie/binary_sensor.py
|
||||||
homeassistant/components/rituals_perfume_genie/entity.py
|
homeassistant/components/rituals_perfume_genie/entity.py
|
||||||
|
homeassistant/components/rituals_perfume_genie/number.py
|
||||||
homeassistant/components/rituals_perfume_genie/sensor.py
|
homeassistant/components/rituals_perfume_genie/sensor.py
|
||||||
homeassistant/components/rituals_perfume_genie/switch.py
|
homeassistant/components/rituals_perfume_genie/switch.py
|
||||||
homeassistant/components/rituals_perfume_genie/__init__.py
|
homeassistant/components/rituals_perfume_genie/__init__.py
|
||||||
|
@ -13,7 +13,7 @@ from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
|
|||||||
|
|
||||||
from .const import ACCOUNT_HASH, COORDINATORS, DEVICES, DOMAIN, HUBLOT
|
from .const import ACCOUNT_HASH, COORDINATORS, DEVICES, DOMAIN, HUBLOT
|
||||||
|
|
||||||
PLATFORMS = ["binary_sensor", "sensor", "switch"]
|
PLATFORMS = ["binary_sensor", "number", "sensor", "switch"]
|
||||||
|
|
||||||
EMPTY_CREDENTIALS = ""
|
EMPTY_CREDENTIALS = ""
|
||||||
|
|
||||||
|
@ -8,4 +8,6 @@ ACCOUNT_HASH = "account_hash"
|
|||||||
ATTRIBUTES = "attributes"
|
ATTRIBUTES = "attributes"
|
||||||
HUBLOT = "hublot"
|
HUBLOT = "hublot"
|
||||||
ID = "id"
|
ID = "id"
|
||||||
|
ROOM = "roomc"
|
||||||
SENSORS = "sensors"
|
SENSORS = "sensors"
|
||||||
|
SPEED = "speedc"
|
||||||
|
126
homeassistant/components/rituals_perfume_genie/number.py
Normal file
126
homeassistant/components/rituals_perfume_genie/number.py
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
"""Support for Rituals Perfume Genie numbers."""
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from pyrituals import Diffuser
|
||||||
|
|
||||||
|
from homeassistant.components.number import NumberEntity
|
||||||
|
from homeassistant.config_entries import ConfigEntry
|
||||||
|
from homeassistant.core import HomeAssistant
|
||||||
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
|
|
||||||
|
from . import RitualsDataUpdateCoordinator
|
||||||
|
from .const import ATTRIBUTES, COORDINATORS, DEVICES, DOMAIN, ROOM, SPEED
|
||||||
|
from .entity import DiffuserEntity
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
MIN_PERFUME_AMOUNT = 1
|
||||||
|
MAX_PERFUME_AMOUNT = 3
|
||||||
|
MIN_ROOM_SIZE = 1
|
||||||
|
MAX_ROOM_SIZE = 4
|
||||||
|
|
||||||
|
PERFUME_AMOUNT_SUFFIX = " Perfume Amount"
|
||||||
|
ROOM_SIZE_SUFFIX = " Room Size"
|
||||||
|
|
||||||
|
|
||||||
|
async def async_setup_entry(
|
||||||
|
hass: HomeAssistant,
|
||||||
|
config_entry: ConfigEntry,
|
||||||
|
async_add_entities: AddEntitiesCallback,
|
||||||
|
) -> None:
|
||||||
|
"""Set up the diffuser numbers."""
|
||||||
|
diffusers = hass.data[DOMAIN][config_entry.entry_id][DEVICES]
|
||||||
|
coordinators = hass.data[DOMAIN][config_entry.entry_id][COORDINATORS]
|
||||||
|
entities: list[DiffuserEntity] = []
|
||||||
|
for hublot, diffuser in diffusers.items():
|
||||||
|
coordinator = coordinators[hublot]
|
||||||
|
entities.append(DiffuserPerfumeAmount(diffuser, coordinator))
|
||||||
|
entities.append(DiffuserRoomSize(diffuser, coordinator))
|
||||||
|
|
||||||
|
async_add_entities(entities)
|
||||||
|
|
||||||
|
|
||||||
|
class DiffuserPerfumeAmount(NumberEntity, DiffuserEntity):
|
||||||
|
"""Representation of a diffuser perfume amount number."""
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self, diffuser: Diffuser, coordinator: RitualsDataUpdateCoordinator
|
||||||
|
) -> None:
|
||||||
|
"""Initialize the diffuser perfume amount number."""
|
||||||
|
super().__init__(diffuser, coordinator, PERFUME_AMOUNT_SUFFIX)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def icon(self) -> str:
|
||||||
|
"""Return the icon of the perfume amount entity."""
|
||||||
|
return "mdi:gauge"
|
||||||
|
|
||||||
|
@property
|
||||||
|
def value(self) -> int:
|
||||||
|
"""Return the current perfume amount."""
|
||||||
|
return self._diffuser.hub_data[ATTRIBUTES][SPEED]
|
||||||
|
|
||||||
|
@property
|
||||||
|
def min_value(self) -> int:
|
||||||
|
"""Return the minimum perfume amount."""
|
||||||
|
return MIN_PERFUME_AMOUNT
|
||||||
|
|
||||||
|
@property
|
||||||
|
def max_value(self) -> int:
|
||||||
|
"""Return the maximum perfume amount."""
|
||||||
|
return MAX_PERFUME_AMOUNT
|
||||||
|
|
||||||
|
async def async_set_value(self, value: float) -> None:
|
||||||
|
"""Set the perfume amount."""
|
||||||
|
if value.is_integer() and MIN_PERFUME_AMOUNT <= value <= MAX_PERFUME_AMOUNT:
|
||||||
|
await self._diffuser.set_perfume_amount(int(value))
|
||||||
|
else:
|
||||||
|
_LOGGER.warning(
|
||||||
|
"Can't set the perfume amount to %s. Perfume amount must be an integer between %s and %s, inclusive",
|
||||||
|
value,
|
||||||
|
MIN_PERFUME_AMOUNT,
|
||||||
|
MAX_PERFUME_AMOUNT,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class DiffuserRoomSize(NumberEntity, DiffuserEntity):
|
||||||
|
"""Representation of a diffuser room size number."""
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self, diffuser: Diffuser, coordinator: RitualsDataUpdateCoordinator
|
||||||
|
) -> None:
|
||||||
|
"""Initialize the diffuser room size number."""
|
||||||
|
super().__init__(diffuser, coordinator, ROOM_SIZE_SUFFIX)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def icon(self) -> str:
|
||||||
|
"""Return the icon of the room size entity."""
|
||||||
|
return "mdi:ruler-square"
|
||||||
|
|
||||||
|
@property
|
||||||
|
def value(self) -> int:
|
||||||
|
"""Return the current room size."""
|
||||||
|
return self._diffuser.hub_data[ATTRIBUTES][ROOM]
|
||||||
|
|
||||||
|
@property
|
||||||
|
def min_value(self) -> int:
|
||||||
|
"""Return the minimum room size."""
|
||||||
|
return MIN_ROOM_SIZE
|
||||||
|
|
||||||
|
@property
|
||||||
|
def max_value(self) -> int:
|
||||||
|
"""Return the maximum room size."""
|
||||||
|
return MAX_ROOM_SIZE
|
||||||
|
|
||||||
|
async def async_set_value(self, value: float) -> None:
|
||||||
|
"""Set the room size."""
|
||||||
|
if value.is_integer() and MIN_ROOM_SIZE <= value <= MAX_ROOM_SIZE:
|
||||||
|
await self._diffuser.set_room_size(int(value))
|
||||||
|
else:
|
||||||
|
_LOGGER.warning(
|
||||||
|
"Can't set the room size to %s. Room size must be an integer between %s and %s, inclusive",
|
||||||
|
value,
|
||||||
|
MIN_ROOM_SIZE,
|
||||||
|
MAX_ROOM_SIZE,
|
||||||
|
)
|
@ -11,12 +11,10 @@ from homeassistant.core import HomeAssistant, callback
|
|||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
|
|
||||||
from . import RitualsDataUpdateCoordinator
|
from . import RitualsDataUpdateCoordinator
|
||||||
from .const import ATTRIBUTES, COORDINATORS, DEVICES, DOMAIN
|
from .const import ATTRIBUTES, COORDINATORS, DEVICES, DOMAIN, ROOM, SPEED
|
||||||
from .entity import DiffuserEntity
|
from .entity import DiffuserEntity
|
||||||
|
|
||||||
FAN = "fanc"
|
FAN = "fanc"
|
||||||
SPEED = "speedc"
|
|
||||||
ROOM = "roomc"
|
|
||||||
|
|
||||||
ON_STATE = "1"
|
ON_STATE = "1"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user