mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Add Low Battery binary_sensor to Flume (#94914)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
parent
9f551c0469
commit
38e3e20f74
@ -25,6 +25,7 @@ from .const import (
|
|||||||
KEY_DEVICE_TYPE,
|
KEY_DEVICE_TYPE,
|
||||||
NOTIFICATION_HIGH_FLOW,
|
NOTIFICATION_HIGH_FLOW,
|
||||||
NOTIFICATION_LEAK_DETECTED,
|
NOTIFICATION_LEAK_DETECTED,
|
||||||
|
NOTIFICATION_LOW_BATTERY,
|
||||||
)
|
)
|
||||||
from .coordinator import (
|
from .coordinator import (
|
||||||
FlumeDeviceConnectionUpdateCoordinator,
|
FlumeDeviceConnectionUpdateCoordinator,
|
||||||
@ -67,6 +68,12 @@ FLUME_BINARY_NOTIFICATION_SENSORS: tuple[FlumeBinarySensorEntityDescription, ...
|
|||||||
event_rule=NOTIFICATION_HIGH_FLOW,
|
event_rule=NOTIFICATION_HIGH_FLOW,
|
||||||
icon="mdi:waves",
|
icon="mdi:waves",
|
||||||
),
|
),
|
||||||
|
FlumeBinarySensorEntityDescription(
|
||||||
|
key="low_battery",
|
||||||
|
entity_category=EntityCategory.DIAGNOSTIC,
|
||||||
|
device_class=BinarySensorDeviceClass.BATTERY,
|
||||||
|
event_rule=NOTIFICATION_LOW_BATTERY,
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -47,3 +47,4 @@ NOTIFICATION_BRIDGE_DISCONNECT = "Bridge Disconnection"
|
|||||||
BRIDGE_NOTIFICATION_KEY = "connected"
|
BRIDGE_NOTIFICATION_KEY = "connected"
|
||||||
BRIDGE_NOTIFICATION_RULE = "Bridge Disconnection"
|
BRIDGE_NOTIFICATION_RULE = "Bridge Disconnection"
|
||||||
NOTIFICATION_LEAK_DETECTED = "Flume Smart Leak Alert"
|
NOTIFICATION_LEAK_DETECTED = "Flume Smart Leak Alert"
|
||||||
|
NOTIFICATION_LOW_BATTERY = "Low Battery"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user