Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
97eb7687
Unverified
Commit
97eb7687
authored
5 months ago
by
Joost Lekkerkerker
Committed by
GitHub
5 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Add entity descriptions to Smarty sensor (#129111)
parent
be8b5a8a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
homeassistant/components/smarty/sensor.py
+76
-134
76 additions, 134 deletions
homeassistant/components/smarty/sensor.py
with
76 additions
and
134 deletions
homeassistant/components/smarty/sensor.py
+
76
−
134
View file @
97eb7687
...
...
@@ -2,10 +2,18 @@
from
__future__
import
annotations
from
collections.abc
import
Callable
from
dataclasses
import
dataclass
from
datetime
import
datetime
,
timedelta
import
logging
from
homeassistant.components.sensor
import
SensorDeviceClass
,
SensorEntity
from
pysmarty2
import
Smarty
from
homeassistant.components.sensor
import
(
SensorDeviceClass
,
SensorEntity
,
SensorEntityDescription
,
)
from
homeassistant.const
import
UnitOfTemperature
from
homeassistant.core
import
HomeAssistant
from
homeassistant.helpers.entity_platform
import
AddEntitiesCallback
...
...
@@ -17,6 +25,61 @@ from .coordinator import SmartyConfigEntry, SmartyCoordinator
_LOGGER
=
logging
.
getLogger
(
__name__
)
def
get_filter_days_left
(
smarty
:
Smarty
)
->
datetime
|
None
:
"""
Return the date when the filter needs to be replaced.
"""
if
(
days_left
:
=
smarty
.
filter_timer
)
is
not
None
:
return
dt_util
.
now
()
+
timedelta
(
days
=
days_left
)
return
None
@dataclass
(
frozen
=
True
,
kw_only
=
True
)
class
SmartySensorDescription
(
SensorEntityDescription
):
"""
Class describing Smarty sensor.
"""
value_fn
:
Callable
[[
Smarty
],
float
|
datetime
|
None
]
ENTITIES
:
tuple
[
SmartySensorDescription
,
...]
=
(
SmartySensorDescription
(
key
=
"
supply_air_temperature
"
,
name
=
"
Supply Air Temperature
"
,
device_class
=
SensorDeviceClass
.
TEMPERATURE
,
native_unit_of_measurement
=
UnitOfTemperature
.
CELSIUS
,
value_fn
=
lambda
smarty
:
smarty
.
supply_air_temperature
,
),
SmartySensorDescription
(
key
=
"
extract_air_temperature
"
,
name
=
"
Extract Air Temperature
"
,
device_class
=
SensorDeviceClass
.
TEMPERATURE
,
native_unit_of_measurement
=
UnitOfTemperature
.
CELSIUS
,
value_fn
=
lambda
smarty
:
smarty
.
extract_air_temperature
,
),
SmartySensorDescription
(
key
=
"
outdoor_air_temperature
"
,
name
=
"
Outdoor Air Temperature
"
,
device_class
=
SensorDeviceClass
.
TEMPERATURE
,
native_unit_of_measurement
=
UnitOfTemperature
.
CELSIUS
,
value_fn
=
lambda
smarty
:
smarty
.
outdoor_air_temperature
,
),
SmartySensorDescription
(
key
=
"
supply_fan_speed
"
,
name
=
"
Supply Fan Speed
"
,
value_fn
=
lambda
smarty
:
smarty
.
supply_fan_speed
,
),
SmartySensorDescription
(
key
=
"
extract_fan_speed
"
,
name
=
"
Extract Fan Speed
"
,
value_fn
=
lambda
smarty
:
smarty
.
extract_fan_speed
,
),
SmartySensorDescription
(
key
=
"
filter_days_left
"
,
name
=
"
Filter Days Left
"
,
device_class
=
SensorDeviceClass
.
TIMESTAMP
,
value_fn
=
get_filter_days_left
,
),
)
async
def
async_setup_entry
(
hass
:
HomeAssistant
,
entry
:
SmartyConfigEntry
,
...
...
@@ -25,152 +88,31 @@ async def async_setup_entry(
"""
Set up the Smarty Sensor Platform.
"""
coordinator
=
entry
.
runtime_data
sensors
=
[
SupplyAirTemperatureSensor
(
coordinator
),
ExtractAirTemperatureSensor
(
coordinator
),
OutdoorAirTemperatureSensor
(
coordinator
),
SupplyFanSpeedSensor
(
coordinator
),
ExtractFanSpeedSensor
(
coordinator
),
FilterDaysLeftSensor
(
coordinator
),
]
async_add_entities
(
sensors
)
async_add_entities
(
SmartySensor
(
coordinator
,
description
)
for
description
in
ENTITIES
)
class
SmartySensor
(
CoordinatorEntity
[
SmartyCoordinator
],
SensorEntity
):
"""
Representation of a Smarty Sensor.
"""
entity_description
:
SmartySensorDescription
def
__init__
(
self
,
coordinator
:
SmartyCoordinator
,
name
:
str
,
key
:
str
,
device_class
:
SensorDeviceClass
|
None
,
unit_of_measurement
:
str
|
None
,
entity_description
:
SmartySensorDescription
,
)
->
None
:
"""
Initialize the entity.
"""
super
().
__init__
(
coordinator
)
self
.
_attr_name
=
f
"
{
coordinator
.
config_entry
.
title
}
{
name
}
"
self
.
_attr_unique_id
=
f
"
{
coordinator
.
config_entry
.
entry_id
}
_
{
key
}
"
self
.
_attr_native_value
=
None
self
.
_attr_device_class
=
device_class
self
.
_attr_native_unit_of_measurement
=
unit_of_measurement
class
SupplyAirTemperatureSensor
(
SmartySensor
):
"""
Supply Air Temperature Sensor.
"""
def
__init__
(
self
,
coordinator
:
SmartyCoordinator
)
->
None
:
"""
Supply Air Temperature Init.
"""
super
().
__init__
(
coordinator
,
name
=
"
Supply Air Temperature
"
,
key
=
"
supply_air_temperature
"
,
device_class
=
SensorDeviceClass
.
TEMPERATURE
,
unit_of_measurement
=
UnitOfTemperature
.
CELSIUS
,
)
@property
def
native_value
(
self
)
->
float
|
None
:
"""
Return the state of the sensor.
"""
return
self
.
coordinator
.
client
.
supply_air_temperature
class
ExtractAirTemperatureSensor
(
SmartySensor
):
"""
Extract Air Temperature Sensor.
"""
def
__init__
(
self
,
coordinator
:
SmartyCoordinator
)
->
None
:
"""
Supply Air Temperature Init.
"""
super
().
__init__
(
coordinator
,
name
=
"
Extract Air Temperature
"
,
key
=
"
extract_air_temperature
"
,
device_class
=
SensorDeviceClass
.
TEMPERATURE
,
unit_of_measurement
=
UnitOfTemperature
.
CELSIUS
,
)
@property
def
native_value
(
self
)
->
float
|
None
:
"""
Return the state of the sensor.
"""
return
self
.
coordinator
.
client
.
extract_air_temperature
class
OutdoorAirTemperatureSensor
(
SmartySensor
):
"""
Extract Air Temperature Sensor.
"""
def
__init__
(
self
,
coordinator
:
SmartyCoordinator
)
->
None
:
"""
Outdoor Air Temperature Init.
"""
super
().
__init__
(
coordinator
,
name
=
"
Outdoor Air Temperature
"
,
key
=
"
outdoor_air_temperature
"
,
device_class
=
SensorDeviceClass
.
TEMPERATURE
,
unit_of_measurement
=
UnitOfTemperature
.
CELSIUS
,
)
@property
def
native_value
(
self
)
->
float
|
None
:
"""
Return the state of the sensor.
"""
return
self
.
coordinator
.
client
.
outdoor_air_temperature
class
SupplyFanSpeedSensor
(
SmartySensor
):
"""
Supply Fan Speed RPM.
"""
def
__init__
(
self
,
coordinator
:
SmartyCoordinator
)
->
None
:
"""
Supply Fan Speed RPM Init.
"""
super
().
__init__
(
coordinator
,
name
=
"
Supply Fan Speed
"
,
key
=
"
supply_fan_speed
"
,
device_class
=
None
,
unit_of_measurement
=
None
,
)
@property
def
native_value
(
self
)
->
float
|
None
:
"""
Return the state of the sensor.
"""
return
self
.
coordinator
.
client
.
supply_fan_speed
class
ExtractFanSpeedSensor
(
SmartySensor
):
"""
Extract Fan Speed RPM.
"""
def
__init__
(
self
,
coordinator
:
SmartyCoordinator
)
->
None
:
"""
Extract Fan Speed RPM Init.
"""
super
().
__init__
(
coordinator
,
name
=
"
Extract Fan Speed
"
,
key
=
"
extract_fan_speed
"
,
device_class
=
None
,
unit_of_measurement
=
None
,
)
@property
def
native_value
(
self
)
->
float
|
None
:
"""
Return the state of the sensor.
"""
return
self
.
coordinator
.
client
.
extract_fan_speed
class
FilterDaysLeftSensor
(
SmartySensor
):
"""
Filter Days Left.
"""
def
__init__
(
self
,
coordinator
:
SmartyCoordinator
)
->
None
:
"""
Filter Days Left Init.
"""
super
().
__init__
(
coordinator
,
name
=
"
Filter Days Left
"
,
key
=
"
filter_days_left
"
,
device_class
=
SensorDeviceClass
.
TIMESTAMP
,
unit_of_measurement
=
None
,
self
.
entity_description
=
entity_description
self
.
_attr_name
=
f
"
{
coordinator
.
config_entry
.
title
}
{
entity_description
.
name
}
"
self
.
_attr_unique_id
=
(
f
"
{
coordinator
.
config_entry
.
entry_id
}
_
{
entity_description
.
key
}
"
)
self
.
_days_left
=
91
@property
def
native_value
(
self
)
->
datetime
|
None
:
def
native_value
(
self
)
->
float
|
datetime
|
None
:
"""
Return the state of the sensor.
"""
days_left
=
self
.
coordinator
.
client
.
filter_timer
if
days_left
is
not
None
and
days_left
!=
self
.
_days_left
:
self
.
_days_left
=
days_left
return
dt_util
.
now
()
+
timedelta
(
days
=
days_left
)
return
None
return
self
.
entity_description
.
value_fn
(
self
.
coordinator
.
client
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment