1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 13:38:04 +00:00
Files
core/homeassistant/components/lock/icons.json
G Johansson 7862596ef3 Add open state to LockEntity (#111968)
* Add `open` state to LockEntity

* Add tests

* Fixes

* Fix tests

* strings and icons

* Adjust demo open lock

* Fix lock and tests

* fix import

* Fix strings

* mute ruff

* Change sequence

* Sequence2

* Group on states

* Fix ruff

* Fix tests

* Add more test cases

* Sorting
2024-05-08 20:42:22 +02:00

21 lines
449 B
JSON

{
"entity_component": {
"_": {
"default": "mdi:lock",
"state": {
"jammed": "mdi:lock-alert",
"locking": "mdi:lock-clock",
"open": "mdi:lock-open-variant",
"opening": "mdi:lock-clock",
"unlocked": "mdi:lock-open-variant",
"unlocking": "mdi:lock-clock"
}
}
},
"services": {
"lock": "mdi:lock",
"open": "mdi:door-open",
"unlock": "mdi:lock-open-variant"
}
}