mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 10:29:27 +00:00
* Shelly RPC sub-devices
* Better varaible name
* Add get_rpc_device_info helper
* Revert channel name changes
* Use get_rpc_device_info
* Add get_rpc_device_info helper
* Use get_block_device_info
* Use helpers in the button platform
* Fix channel name and roller mode for block devices
* Fix EM3 gen1
* Fix channel name for RPC devices
* Revert test changes
* Fix/improve test_block_get_block_channel_name
* Fix test_get_rpc_channel_name_multiple_components
* Fix tests
* Fix tests
* Fix tests
* Use key instead of index to generate sub-device identifier
* Improve logic for Pro RGBWW PM
* Split channels for em1
* Better channel name
* Cleaning
* has_entity_name is True
* Add get_block_sub_device_name() function
* Improve block functions
* Add get_rpc_sub_device_name() function
* Remove _attr_name
* Remove name for button with device class
* Fix names of virtual components
* Better Input name
* Fix get_rpc_channel_name()
* Fix names for Inputs
* get_rpc_channel_name() improvement
* Better variable name
* Clean RPC functions
* Fix input_name type
* Fix test
* Fix entity_ids for Blu Trv
* Fix get_block_channel_name()
* Fix for Blu Trv, once again
* Revert name for reboot button
* Fix button tests
* Fix tests
* Fix coordinator tests
* Fix tests for cover platform
* Fix tests for event platform
* Fix entity_ids in init tests
* Fix get_block_channel_name() for lights
* Fix tests for light platform
* Fix test for logbook
* Update snapshots for number platform
* Fix tests for sensor platform
* Fix tests for switch platform
* Fix tests for utils
* Uncomment
* Fix tests for flood
* Fix Valve entity name
* Fix climate tests
* Fix test for diagnostics
* Fix tests for init
* Remove old snapshots
* Add tests for 2PM Gen3
* Add comment
* More tests
* Cleaning
* Clean fixtures
* Update tests
* Anonymize coordinates in fixtures
* Split Pro 3EM entities into sub-devices
* Make sub-device names more unique
* 3EM (gen1) does not support sub-devices
* Coverage
* Rename "device temperature" sensor to the "relay temperature"
* Update tests after rebase
* Support sub-devices for 3EM (gen1)
* Mark has-entity-name rule as done 🎉
* Rename `relay temperature` to `temperature`
92 lines
2.3 KiB
Python
92 lines
2.3 KiB
Python
"""Text for Shelly."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from typing import Final
|
|
|
|
from aioshelly.const import RPC_GENERATIONS
|
|
|
|
from homeassistant.components.text import (
|
|
DOMAIN as TEXT_PLATFORM,
|
|
TextEntity,
|
|
TextEntityDescription,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from .coordinator import ShellyConfigEntry
|
|
from .entity import (
|
|
RpcEntityDescription,
|
|
ShellyRpcAttributeEntity,
|
|
async_setup_entry_rpc,
|
|
rpc_call,
|
|
)
|
|
from .utils import (
|
|
async_remove_orphaned_entities,
|
|
get_device_entry_gen,
|
|
get_virtual_component_ids,
|
|
)
|
|
|
|
PARALLEL_UPDATES = 0
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class RpcTextDescription(RpcEntityDescription, TextEntityDescription):
|
|
"""Class to describe a RPC text entity."""
|
|
|
|
|
|
RPC_TEXT_ENTITIES: Final = {
|
|
"text": RpcTextDescription(
|
|
key="text",
|
|
sub_key="value",
|
|
),
|
|
}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ShellyConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up sensors for device."""
|
|
if get_device_entry_gen(config_entry) in RPC_GENERATIONS:
|
|
coordinator = config_entry.runtime_data.rpc
|
|
assert coordinator
|
|
|
|
async_setup_entry_rpc(
|
|
hass, config_entry, async_add_entities, RPC_TEXT_ENTITIES, RpcText
|
|
)
|
|
|
|
# the user can remove virtual components from the device configuration, so
|
|
# we need to remove orphaned entities
|
|
virtual_text_ids = get_virtual_component_ids(
|
|
coordinator.device.config, TEXT_PLATFORM
|
|
)
|
|
async_remove_orphaned_entities(
|
|
hass,
|
|
config_entry.entry_id,
|
|
coordinator.mac,
|
|
TEXT_PLATFORM,
|
|
virtual_text_ids,
|
|
"text",
|
|
)
|
|
|
|
|
|
class RpcText(ShellyRpcAttributeEntity, TextEntity):
|
|
"""Represent a RPC text entity."""
|
|
|
|
entity_description: RpcTextDescription
|
|
attribute_value: str | None
|
|
_id: int
|
|
|
|
@property
|
|
def native_value(self) -> str | None:
|
|
"""Return value of sensor."""
|
|
return self.attribute_value
|
|
|
|
@rpc_call
|
|
async def async_set_value(self, value: str) -> None:
|
|
"""Change the value."""
|
|
await self.coordinator.device.text_set(self._id, value)
|