mirror of
https://github.com/thejeffreystone/home-assistant-configuration.git
synced 2025-02-13 03:59:49 +00:00
11 lines
290 B
YAML
11 lines
290 B
YAML
- platform: template
|
|
sensors:
|
|
garage_door:
|
|
unit_of_measurement: '%'
|
|
value_template: >-
|
|
{%- if states.cover.garage_door }
|
|
{{ states.cover.garage_door }}
|
|
{% else %}
|
|
{{ states.sensor.garage_door.state }}
|
|
{%- endif %}
|