-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e261429
commit 0804fa5
Showing
5 changed files
with
106 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
Platform.BINARY_SENSOR, | ||
Platform.CLIMATE, | ||
Platform.NUMBER, | ||
Platform.SENSOR, | ||
Platform.SWITCH, | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
"""Platform for eq3 sensor entities.""" | ||
|
||
from collections.abc import Callable | ||
from dataclasses import dataclass | ||
from datetime import date, datetime | ||
from decimal import Decimal | ||
from typing import TYPE_CHECKING | ||
|
||
from eq3btsmart.models import Status | ||
|
||
from homeassistant.components.sensor import ( | ||
SensorDeviceClass, | ||
SensorEntity, | ||
SensorEntityDescription, | ||
StateType, | ||
) | ||
from homeassistant.components.sensor.const import SensorStateClass | ||
from homeassistant.const import PERCENTAGE | ||
from homeassistant.core import HomeAssistant | ||
from homeassistant.helpers.entity_platform import AddEntitiesCallback | ||
|
||
from . import Eq3ConfigEntry | ||
from .const import ENTITY_KEY_AWAY_UNTIL, ENTITY_KEY_VALVE | ||
from .entity import Eq3Entity | ||
|
||
|
||
@dataclass(frozen=True, kw_only=True) | ||
class Eq3SensorEntityDescription(SensorEntityDescription): | ||
"""Entity description for eq3 sensor entities.""" | ||
|
||
value_func: Callable[[Status], StateType | date | datetime | Decimal] | ||
|
||
|
||
SENSOR_ENTITY_DESCRIPTIONS = [ | ||
Eq3SensorEntityDescription( | ||
key=ENTITY_KEY_VALVE, | ||
translation_key=ENTITY_KEY_VALVE, | ||
value_func=lambda status: status.valve, | ||
native_unit_of_measurement=PERCENTAGE, | ||
state_class=SensorStateClass.MEASUREMENT, | ||
), | ||
Eq3SensorEntityDescription( | ||
key=ENTITY_KEY_AWAY_UNTIL, | ||
translation_key=ENTITY_KEY_AWAY_UNTIL, | ||
value_func=lambda status: status.away_until.value | ||
if status.away_until | ||
else None, | ||
device_class=SensorDeviceClass.DATE, | ||
), | ||
] | ||
|
||
|
||
async def async_setup_entry( | ||
hass: HomeAssistant, | ||
entry: Eq3ConfigEntry, | ||
async_add_entities: AddEntitiesCallback, | ||
) -> None: | ||
"""Set up the entry.""" | ||
|
||
async_add_entities( | ||
Eq3SensorEntity(entry, entity_description) | ||
for entity_description in SENSOR_ENTITY_DESCRIPTIONS | ||
) | ||
|
||
|
||
class Eq3SensorEntity(Eq3Entity, SensorEntity): | ||
"""Base class for eq3 sensor entities.""" | ||
|
||
entity_description: Eq3SensorEntityDescription | ||
|
||
def __init__( | ||
self, entry: Eq3ConfigEntry, entity_description: Eq3SensorEntityDescription | ||
) -> None: | ||
"""Initialize the entity.""" | ||
|
||
super().__init__(entry, entity_description.key) | ||
self.entity_description = entity_description | ||
|
||
@property | ||
def native_value(self) -> StateType | date | datetime | Decimal: | ||
"""Return the value reported by the sensor.""" | ||
|
||
if TYPE_CHECKING: | ||
assert self._thermostat.status is not None | ||
|
||
return self.entity_description.value_func(self._thermostat.status) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters