Hi,
I don’t remember if this are doable, but I want to make a sensor of the value of attribute users
and '108'
and pin_code
.
How can I achieve this?
Hi,
I don’t remember if this are doable, but I want to make a sensor of the value of attribute users
and '108'
and pin_code
.
How can I achieve this?
Assuming you know how to set up a template sensor, use this in the template to get the pin_code
for user 108
:
{{ state_attr('lock.0x68...','users')['108']['pin_code'] }}
for example. Have a play in Developer Tools / Templates to check it.