* Initial commit for fyta integration * Update __init__.py Delete BinarySensor for first PR * Update __init__.py Rewind wrongful deletion of comma * Delete homeassistant/components/fyta/binary_sensor.py Delete binary_sensor for first pr of integration * Update manifest.json Updated requirement to new version of fyta_cli 0.2.1, where bug in import of modules has been resolved. * Update requirements_test_all.txt adjust to updated manifest * Update requirements_all.txt adjust to updated manifest * Update test_config_flow.py * Update config_flow.py update file to correct error with _entry attribute * Fyta integration - update initial PR based on review in initial PR #110816 (#2) * adjustments to pass test for config_flow * backport of changes in intitial PR to dev * update text_config_flow * changes based on review in initial PR #110816 * Update homeassistant/components/fyta/sensor.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/config_flow.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/config_flow.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/sensor.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/sensor.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/coordinator.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/config_flow.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/strings.json Co-authored-by: Sid <27780930+autinerd@users.noreply.github.com> * Update homeassistant/components/fyta/strings.json Co-authored-by: Sid <27780930+autinerd@users.noreply.github.com> * Update homeassistant/components/fyta/manifest.json Co-authored-by: Sid <27780930+autinerd@users.noreply.github.com> * Adjustments based on PR-commet of Feb 19 (#3) * add test for config_flow.validate_input * update based on pr review * update based on pr review * further refinings based on PR review * Update tests/components/fyta/test_config_flow.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update test_config_flow.py Update tests based on PR comment * Update homeassistant/components/fyta/sensor.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/sensor.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * add handling and test for duplicate entry * Update homeassistant/components/fyta/coordinator.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/sensor.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/entity.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update test_config_flow.py parametrize test for exceptions * Update config_flow.py Move _async_abort_entries_match, add arguments * Update coordinator.py * Update typing in coordinator.py * Update coordinator.py update typing * Update coordinator.py corrected typo * Update coordinator.py * Update entity.py * Update sensor.py * Update icons.json * Update homeassistant/components/fyta/entity.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/entity.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update entity.py * Update test_config_flow.py * Update config_flow.py (change FlowResult to ConfigFlowResult) * Update config_flow.py * Update homeassistant/components/fyta/config_flow.py Co-authored-by: Robert Resch <robert@resch.dev> * Update homeassistant/components/fyta/config_flow.py Co-authored-by: Robert Resch <robert@resch.dev> * Update homeassistant/components/fyta/coordinator.py Co-authored-by: Robert Resch <robert@resch.dev> * Update coordinator.py * Update config_flow.py (typing FlowResult -> ConfigFlowResult) * Update config_flow.py * Aktualisieren von config_flow.py * remove coordinator entities * Update strings.json remove plant_number * Update icons.json remove plant_number * Update manifest.json Update requirement to latest fyta_cli version * Update requirements_all.txt * Update requirements_test_all.txt * Update homeassistant/components/fyta/sensor.py * Update homeassistant/components/fyta/sensor.py * Update homeassistant/components/fyta/coordinator.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/coordinator.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/coordinator.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/entity.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/strings.json Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update homeassistant/components/fyta/strings.json Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update tests/components/fyta/test_config_flow.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update tests/components/fyta/test_config_flow.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * move test-helpers into conftest.py, adjust import of coordinator.py --------- Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> Co-authored-by: Sid <27780930+autinerd@users.noreply.github.com> Co-authored-by: Robert Resch <robert@resch.dev>
143 lines
4.5 KiB
Python
143 lines
4.5 KiB
Python
"""Summary data from Fyta."""
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
from datetime import datetime
|
|
from typing import Final
|
|
|
|
from fyta_cli.fyta_connector import PLANT_STATUS
|
|
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
SensorStateClass,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import PERCENTAGE, EntityCategory, UnitOfTemperature
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import FytaCoordinator
|
|
from .entity import FytaPlantEntity
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class FytaSensorEntityDescription(SensorEntityDescription):
|
|
"""Describes Fyta sensor entity."""
|
|
|
|
value_fn: Callable[[str | int | float | datetime], str | int | float | datetime] = (
|
|
lambda value: value
|
|
)
|
|
|
|
|
|
PLANT_STATUS_LIST: list[str] = ["too_low", "low", "perfect", "high", "too_high"]
|
|
|
|
SENSORS: Final[list[FytaSensorEntityDescription]] = [
|
|
FytaSensorEntityDescription(
|
|
key="scientific_name",
|
|
translation_key="scientific_name",
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="status",
|
|
translation_key="plant_status",
|
|
device_class=SensorDeviceClass.ENUM,
|
|
options=PLANT_STATUS_LIST,
|
|
value_fn=lambda value: PLANT_STATUS[value],
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="temperature_status",
|
|
translation_key="temperature_status",
|
|
device_class=SensorDeviceClass.ENUM,
|
|
options=PLANT_STATUS_LIST,
|
|
value_fn=lambda value: PLANT_STATUS[value],
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="light_status",
|
|
translation_key="light_status",
|
|
device_class=SensorDeviceClass.ENUM,
|
|
options=PLANT_STATUS_LIST,
|
|
value_fn=lambda value: PLANT_STATUS[value],
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="moisture_status",
|
|
translation_key="moisture_status",
|
|
device_class=SensorDeviceClass.ENUM,
|
|
options=PLANT_STATUS_LIST,
|
|
value_fn=lambda value: PLANT_STATUS[value],
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="salinity_status",
|
|
translation_key="salinity_status",
|
|
device_class=SensorDeviceClass.ENUM,
|
|
options=PLANT_STATUS_LIST,
|
|
value_fn=lambda value: PLANT_STATUS[value],
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="temperature",
|
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
|
device_class=SensorDeviceClass.TEMPERATURE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="light",
|
|
translation_key="light",
|
|
native_unit_of_measurement="mol/d",
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="moisture",
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
device_class=SensorDeviceClass.MOISTURE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="salinity",
|
|
translation_key="salinity",
|
|
native_unit_of_measurement="mS/cm",
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="ph",
|
|
device_class=SensorDeviceClass.PH,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
),
|
|
FytaSensorEntityDescription(
|
|
key="battery_level",
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
device_class=SensorDeviceClass.BATTERY,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Set up the FYTA sensors."""
|
|
coordinator: FytaCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
plant_entities = [
|
|
FytaPlantSensor(coordinator, entry, sensor, plant_id)
|
|
for plant_id in coordinator.fyta.plant_list
|
|
for sensor in SENSORS
|
|
if sensor.key in coordinator.data[plant_id]
|
|
]
|
|
|
|
async_add_entities(plant_entities)
|
|
|
|
|
|
class FytaPlantSensor(FytaPlantEntity, SensorEntity):
|
|
"""Represents a Fyta sensor."""
|
|
|
|
entity_description: FytaSensorEntityDescription
|
|
|
|
@property
|
|
def native_value(self) -> str | int | float | datetime:
|
|
"""Return the state for this sensor."""
|
|
|
|
val = self.plant[self.entity_description.key]
|
|
return self.entity_description.value_fn(val)
|