* init setup of Anova Sous Vide * bump anova-wifi to 0.2.4 * Removed yaml support * Bump to anova-wifi 0.2.5 * Added support for adding sous vide while offline * Added basic test for sensor * added better tests for sensors and init * expanded code coverage * Decreased timedelta to lowest functioning value. * Updating my username * migrate to async_forward_entry_setups * applying pr recommended changes * bump anova-wifi to 0.2.7 * Improvements to hopefully get this review ready * formatting changes * clean ups for pr review * remove unneeded unique id check. * bump ao anova_wifi 0.3.0 * rename device_id to device_unique_id * renamed to 'anova' * added unique_id to MockConfigEntry * removed leftover anova sous vides * added device id to strings * added error for incorrect device id * add has_entity_name * added attr name for tests * added authentication functionality * bump to 0.4.3 * split entity into its own class/object * pulling firmware version out of async_setup Co-authored-by: J. Nick Koston <nick@koston.org> * addressed pr changes * fixed pytest * added anova data model * removed unneeded time change * add logging in package * rework step_user * Update homeassistant/components/anova/sensor.py Co-authored-by: J. Nick Koston <nick@koston.org> * Removed lower from attr unique id Co-authored-by: J. Nick Koston <nick@koston.org> * Removed unneeded member variables in sensor Co-authored-by: J. Nick Koston <nick@koston.org> * removed repeated subclass attr Co-authored-by: J. Nick Koston <nick@koston.org> * simplify update_failed test * created descriptionentity * bump to 0.6.1 limit ws connect * add translation for sensor entities * version bump - support pro model * add anova to strict typing * fixed sensor not getting datas type * Apply suggestions from code review Co-authored-by: J. Nick Koston <nick@koston.org> * Check for new devices in init * style changes * return false instead of config entry not ready * move serialize_device_list to utils * move repeating device check into api * moved unneeded code out of try except * fixed tests to get 100% cov * Update homeassistant/components/anova/strings.json Co-authored-by: J. Nick Koston <nick@koston.org> --------- Co-authored-by: J. Nick Koston <nick@koston.org>
97 lines
3.3 KiB
Python
97 lines
3.3 KiB
Python
"""Support for Anova Sensors."""
|
|
from __future__ import annotations
|
|
|
|
from anova_wifi import AnovaPrecisionCookerSensor
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
SensorStateClass,
|
|
)
|
|
from homeassistant.const import UnitOfTemperature, UnitOfTime
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import StateType
|
|
|
|
from .const import DOMAIN
|
|
from .entity import AnovaDescriptionEntity
|
|
from .models import AnovaData
|
|
|
|
SENSOR_DESCRIPTIONS: list[SensorEntityDescription] = [
|
|
SensorEntityDescription(
|
|
key=AnovaPrecisionCookerSensor.COOK_TIME,
|
|
state_class=SensorStateClass.TOTAL_INCREASING,
|
|
native_unit_of_measurement=UnitOfTime.SECONDS,
|
|
icon="mdi:clock-outline",
|
|
translation_key="cook_time",
|
|
),
|
|
SensorEntityDescription(
|
|
key=AnovaPrecisionCookerSensor.STATE, translation_key="state"
|
|
),
|
|
SensorEntityDescription(
|
|
key=AnovaPrecisionCookerSensor.MODE, translation_key="mode"
|
|
),
|
|
SensorEntityDescription(
|
|
key=AnovaPrecisionCookerSensor.TARGET_TEMPERATURE,
|
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
|
device_class=SensorDeviceClass.TEMPERATURE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
icon="mdi:thermometer",
|
|
translation_key="target_temperature",
|
|
),
|
|
SensorEntityDescription(
|
|
key=AnovaPrecisionCookerSensor.COOK_TIME_REMAINING,
|
|
native_unit_of_measurement=UnitOfTime.SECONDS,
|
|
icon="mdi:clock-outline",
|
|
translation_key="cook_time_remaining",
|
|
),
|
|
SensorEntityDescription(
|
|
key=AnovaPrecisionCookerSensor.HEATER_TEMPERATURE,
|
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
|
device_class=SensorDeviceClass.TEMPERATURE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
icon="mdi:thermometer",
|
|
translation_key="heater_temperature",
|
|
),
|
|
SensorEntityDescription(
|
|
key=AnovaPrecisionCookerSensor.TRIAC_TEMPERATURE,
|
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
|
device_class=SensorDeviceClass.TEMPERATURE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
icon="mdi:thermometer",
|
|
translation_key="triac_temperature",
|
|
),
|
|
SensorEntityDescription(
|
|
key=AnovaPrecisionCookerSensor.WATER_TEMPERATURE,
|
|
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
|
|
device_class=SensorDeviceClass.TEMPERATURE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
icon="mdi:thermometer",
|
|
translation_key="water_temperature",
|
|
),
|
|
]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: config_entries.ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Anova device."""
|
|
anova_data: AnovaData = hass.data[DOMAIN][entry.entry_id]
|
|
async_add_entities(
|
|
AnovaSensor(coordinator, description)
|
|
for coordinator in anova_data.coordinators
|
|
for description in SENSOR_DESCRIPTIONS
|
|
)
|
|
|
|
|
|
class AnovaSensor(AnovaDescriptionEntity, SensorEntity):
|
|
"""A sensor using Anova coordinator."""
|
|
|
|
@property
|
|
def native_value(self) -> StateType:
|
|
"""Return the state."""
|
|
return self.coordinator.data["sensors"][self.entity_description.key]
|