Added missing lock state "unlocked" (#37738)

The list of states a lock entity can have was missing the "unlocked" option.
This commit is contained in:
Martin Nilsson 2025-02-27 15:51:15 +01:00 committed by GitHub
parent fccce64391
commit 75b67c8b7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,6 +27,7 @@ A lock entity can have the following states:
- **Opening**: Indication of whether the lock is currently opening. - **Opening**: Indication of whether the lock is currently opening.
- **Locked**: The lock is currently locked. - **Locked**: The lock is currently locked.
- **Locking**: The lock is in the process of being locked. - **Locking**: The lock is in the process of being locked.
- **Unlocked**: The lock is currently unlocked.
- **Unlocking**: The lock is in the process of being unlocked. - **Unlocking**: The lock is in the process of being unlocked.
- **Unavailable**: The entity is currently unavailable. - **Unavailable**: The entity is currently unavailable.
- **Unknown**: The state is not yet known. - **Unknown**: The state is not yet known.