You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.5 KiB
37 lines
1.5 KiB
######################################################################
|
|
# @CCOSTAN - Follow Me on X
|
|
# For more info visit https://www.vcloudinfo.com/click-here
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
# -------------------------------------------------------------------
|
|
# Inverted Binary Sensor Blueprint - reusable Home Assistant blueprint.
|
|
# Defines the reusable Inverted Binary Sensor Blueprint blueprint.
|
|
# -------------------------------------------------------------------
|
|
######################################################################
|
|
blueprint:
|
|
name: Invert a binary sensor
|
|
description: Creates a binary_sensor which holds the inverted value of a reference binary_sensor
|
|
domain: template
|
|
source_url: https://github.com/home-assistant/core/blob/dev/homeassistant/components/template/blueprints/inverted_binary_sensor.yaml
|
|
input:
|
|
reference_entity:
|
|
name: Binary sensor to be inverted
|
|
description: The binary_sensor which needs to have its value inverted
|
|
selector:
|
|
entity:
|
|
domain: binary_sensor
|
|
variables:
|
|
reference_entity: !input reference_entity
|
|
binary_sensor:
|
|
state: >
|
|
{% if states(reference_entity) == 'on' %}
|
|
off
|
|
{% elif states(reference_entity) == 'off' %}
|
|
on
|
|
{% else %}
|
|
{{ states(reference_entity) }}
|
|
{% endif %}
|
|
# delay_on: not_used in this example
|
|
# delay_off: not_used in this example
|
|
# auto_off: not_used in this example
|
|
availability: "{{ states(reference_entity) not in ('unknown', 'unavailable') }}"
|