Hey, sorry I couldn’t help with your issue and I’m glad you managed to fix it. I didn’t get a notification .
So your question is whether there is an indicator that the door is closed, right?
Well, the exposed lock entity has three states: locked, closed and open.
Meaning if you change the state of the door (ie. open, close, change day/night mode in Siegenia app) the lock entity should reflect that.
So I guess the anwser to your question is that you can tell that the door is open.
(That is if everything is working as intended )
Entity filter
My main use-case is showing the door status on a dashboard, so that I’m able if everything is ready to start the alarm when leaving.
Here’s a entity filter card that shows what windows/door are open. Currently there is a single window open.
Here’s the code for entity filter card that shows two doors, only if they are open:
type: entity-filter
entities:
- entity: lock.sf_lock_status
state_filter:
- operator: '=='
value: open
- entity: lock.sf_lock_status_2
state_filter:
- operator: '=='
value: open
Tile card
And I also use a tile card to control the door:
Here’s the code for that one:
type: tile
entity: lock.lock_status_2
hide_state: false
Automations
I use a simple automation that locks the door when the alarm is set.
And two more autoamtions to lock the door at night and unlock in the morning.
I hope I answered your questions, if not, I’m happy to provide further explenations.
PS: I wanted to give more pictures but the forum won’t let me