mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 08:47:10 +00:00
IntelliFire Diagnostic Error Sensor (#67403)
Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
parent
6f61ed8799
commit
484f723875
@ -3,8 +3,7 @@
|
|||||||
"name": "IntelliFire",
|
"name": "IntelliFire",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/intellifire",
|
"documentation": "https://www.home-assistant.io/integrations/intellifire",
|
||||||
"requirements": ["intellifire4py==0.9.9"],
|
"requirements": ["intellifire4py==1.0.1"],
|
||||||
"dependencies": [],
|
|
||||||
"codeowners": ["@jeeftor"],
|
"codeowners": ["@jeeftor"],
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["intellifire4py"]
|
"loggers": ["intellifire4py"]
|
||||||
|
@ -114,6 +114,12 @@ INTELLIFIRE_SENSORS: tuple[IntellifireSensorEntityDescription, ...] = (
|
|||||||
value_fn=lambda data: data.connection_quality,
|
value_fn=lambda data: data.connection_quality,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
),
|
),
|
||||||
|
IntellifireSensorEntityDescription(
|
||||||
|
key="errors",
|
||||||
|
name="Errors",
|
||||||
|
entity_category=EntityCategory.DIAGNOSTIC,
|
||||||
|
value_fn=lambda data: data.error_codes_string,
|
||||||
|
),
|
||||||
IntellifireSensorEntityDescription(
|
IntellifireSensorEntityDescription(
|
||||||
key="ecm_latency",
|
key="ecm_latency",
|
||||||
name="ECM Latency",
|
name="ECM Latency",
|
||||||
|
@ -873,7 +873,7 @@ influxdb-client==1.24.0
|
|||||||
influxdb==5.3.1
|
influxdb==5.3.1
|
||||||
|
|
||||||
# homeassistant.components.intellifire
|
# homeassistant.components.intellifire
|
||||||
intellifire4py==0.9.9
|
intellifire4py==1.0.1
|
||||||
|
|
||||||
# homeassistant.components.iotawatt
|
# homeassistant.components.iotawatt
|
||||||
iotawattpy==0.1.0
|
iotawattpy==0.1.0
|
||||||
|
@ -599,7 +599,7 @@ influxdb-client==1.24.0
|
|||||||
influxdb==5.3.1
|
influxdb==5.3.1
|
||||||
|
|
||||||
# homeassistant.components.intellifire
|
# homeassistant.components.intellifire
|
||||||
intellifire4py==0.9.9
|
intellifire4py==1.0.1
|
||||||
|
|
||||||
# homeassistant.components.iotawatt
|
# homeassistant.components.iotawatt
|
||||||
iotawattpy==0.1.0
|
iotawattpy==0.1.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user