mirror of
https://github.com/home-assistant/core.git
synced 2025-11-10 11:29:46 +00:00
* Create component via script.scaffold * Create sensor definition * Define coordinator * Define config flow * Refine sensor definition and add tests * Refine coordinator after testing end to end * Redefine sensor in a more idiomatic way * Use entity (common-module) * Follow config-flow conventions more closely * Use custom ConfigEntry to conform to strict-typing * Define API object instead of using aio directly * Test before setup in init * Add diagnostics * Make some more quality changes * Move scan interval to const * Commit generated files * Add quality scale * feedback: Apply consistent language to Tilt Pi refs * feedback: Remove empty manifest fields * feedback: Use translations instead of hardcoded name * feedback: Remove diagnostics * feedback: Idiomatic and general improvements * Use tilt-pi library * feedback: Coordinator data returns dict * feedback: Move client creation to coordinator * feedback: Request only Tilt Pi URL from user * Update homeassistant/components/tilt_pi/entity.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/tilt_pi/sensor.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/tilt_pi/entity.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * feedback: Avoid redundant keyword arguments in function calls * feedback: Remove unused models and variables * feedback: Use icons.json * feedback: Style best practices * Update homeassistant/components/tilt_pi/entity.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update tests/components/tilt_pi/test_config_flow.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * feedback: Improve config flow unit tests * feedback: Patch TiltPi client mock * feedback: Mark entity-device-class as done * feedback: Align quaity scale with current state * feeback: Create brands file for Tilt brand * feedback: Demonstrate recovery in config flow * feedback: Test coordinator behavior via sensors * Update homeassistant/components/tilt_pi/config_flow.py Co-authored-by: Josef Zweck <josef@zweck.dev> * Update homeassistant/components/tilt_pi/coordinator.py Co-authored-by: Josef Zweck <josef@zweck.dev> * Update homeassistant/components/tilt_pi/quality_scale.yaml Co-authored-by: Josef Zweck <josef@zweck.dev> * Update homeassistant/components/tilt_pi/quality_scale.yaml Co-authored-by: Josef Zweck <josef@zweck.dev> * Update homeassistant/components/tilt_pi/quality_scale.yaml Co-authored-by: Josef Zweck <josef@zweck.dev> * Update homeassistant/components/tilt_pi/config_flow.py Co-authored-by: Josef Zweck <josef@zweck.dev> * feedback: Update tilt_pi quality scale * feedback: Move const to coordinator * feedback: Correct strings.json for incorrect and missing fields * feedback: Use tiltpi package version published via CI * Run ruff format manually * Add missing string for invalid host * Fix * Fix --------- Co-authored-by: Michael Heyman <michaelheyman@users.noreply.github.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> Co-authored-by: Josef Zweck <josef@zweck.dev>
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
"""Base entity for Tilt Pi integration."""
|
|
|
|
from tiltpi import TiltHydrometerData
|
|
|
|
from homeassistant.helpers.device_registry import CONNECTION_NETWORK_MAC, DeviceInfo
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .coordinator import TiltPiDataUpdateCoordinator
|
|
|
|
|
|
class TiltEntity(CoordinatorEntity[TiltPiDataUpdateCoordinator]):
|
|
"""Base class for Tilt entities."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: TiltPiDataUpdateCoordinator,
|
|
hydrometer: TiltHydrometerData,
|
|
) -> None:
|
|
"""Initialize the entity."""
|
|
super().__init__(coordinator)
|
|
self._mac_id = hydrometer.mac_id
|
|
self._attr_device_info = DeviceInfo(
|
|
connections={(CONNECTION_NETWORK_MAC, hydrometer.mac_id)},
|
|
name=f"Tilt {hydrometer.color}",
|
|
manufacturer="Tilt Hydrometer",
|
|
model=f"{hydrometer.color} Tilt Hydrometer",
|
|
)
|
|
|
|
@property
|
|
def current_hydrometer(self) -> TiltHydrometerData:
|
|
"""Return the current hydrometer data for this entity."""
|
|
return self.coordinator.data[self._mac_id]
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return True if the hydrometer is available (present in coordinator data)."""
|
|
return super().available and self._mac_id in self.coordinator.data
|