Skip to content

Instantly share code, notes, and snippets.

@dannyhanes
Created August 8, 2024 23:35
Show Gist options
  • Save dannyhanes/9c5c6bbe7e3fd80e08525c4b155d9b9e to your computer and use it in GitHub Desktop.
Save dannyhanes/9c5c6bbe7e3fd80e08525c4b155d9b9e to your computer and use it in GitHub Desktop.
Lock Card
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