Created
August 8, 2024 23:35
-
-
Save dannyhanes/9c5c6bbe7e3fd80e08525c4b155d9b9e to your computer and use it in GitHub Desktop.
Lock Card
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type: custom:mushroom-template-card | |
primary: Back Door | |
icon: |- | |
{% if is_state('binary_sensor.back_door', 'on') %} | |
mdi:door-open | |
{% elif is_state('lock.back_door_lock', 'unlocked') %} | |
mdi:lock-open-variant | |
{% elif is_state("lock.back_door_lock", "locked") %} | |
mdi:lock | |
{% elif is_state("lock.back_door_lock", "unavailable") %} | |
mdi:alert-octagram | |
{% endif %} | |
fill_container: true | |
layout: vertical | |
icon_color: |- | |
{% if is_state('binary_sensor.back_door', 'on') %} | |
#f73543 | |
{% elif is_state('lock.back_door_lock', 'unlocked') %} | |
#edbd2b | |
{% elif is_state("lock.back_door_lock", "locked") %} | |
#00ca8b | |
{% elif is_state("lock.back_door_lock", "unavailable") %} | |
#ff00d4 | |
{% endif %} | |
entity: lock.back_door_lock | |
secondary: |- | |
{% if is_state('binary_sensor.back_door', 'on') %} | |
Open | |
{% elif is_state('lock.back_door_lock', 'unlocked') %} | |
Unlocked | |
{% elif is_state("lock.back_door_lock", "locked") %} | |
Locked | |
{% endif %} | |
tap_action: | |
action: toggle | |
hold_action: | |
action: more-info | |
badge_icon: '' | |
badge_color: |- | |
{% if states('sensor.back_door_lock_battery_level') | float == 0 %} | |
mdi:battery-alert-variant-outline | |
{% elif states('sensor.back_door_lock_battery_level') | float <= 20 %} | |
mdi:battery-20 | |
{% else %} | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment