mirror of
https://github.com/home-assistant/core.git
synced 2025-07-29 16:17:20 +00:00
Add starline run sensor (#130444)
This commit is contained in:
parent
58087d67d1
commit
23bac67550
@ -41,6 +41,11 @@ BINARY_SENSOR_TYPES: tuple[BinarySensorEntityDescription, ...] = (
|
||||
translation_key="doors",
|
||||
device_class=BinarySensorDeviceClass.LOCK,
|
||||
),
|
||||
BinarySensorEntityDescription(
|
||||
key="run",
|
||||
translation_key="is_running",
|
||||
device_class=BinarySensorDeviceClass.RUNNING,
|
||||
),
|
||||
BinarySensorEntityDescription(
|
||||
key="hfree",
|
||||
translation_key="handsfree",
|
||||
|
@ -12,6 +12,9 @@
|
||||
},
|
||||
"moving_ban": {
|
||||
"default": "mdi:car-off"
|
||||
},
|
||||
"is_running": {
|
||||
"default": "mdi:speedometer"
|
||||
}
|
||||
},
|
||||
"button": {
|
||||
|
@ -63,6 +63,9 @@
|
||||
},
|
||||
"moving_ban": {
|
||||
"name": "Moving ban"
|
||||
},
|
||||
"is_running": {
|
||||
"name": "Running"
|
||||
}
|
||||
},
|
||||
"device_tracker": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user