From 2c25c2b2d8010e9360f8e4d333d928fbb24026fc Mon Sep 17 00:00:00 2001 From: Carlo Costanzo Date: Sun, 7 Dec 2025 18:01:24 -0500 Subject: [PATCH] Update Home Assistant version to 2025.12.1 and remove inverted binary sensor blueprint file. --- config/.HA_VERSION | 2 +- .../homeassistant/inverted_binary_sensor.yaml | 27 ------------------- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 config/blueprints/template/homeassistant/inverted_binary_sensor.yaml diff --git a/config/.HA_VERSION b/config/.HA_VERSION index f0f51063..2ee75aaa 100755 --- a/config/.HA_VERSION +++ b/config/.HA_VERSION @@ -1 +1 @@ -2025.12.0 \ No newline at end of file +2025.12.1 \ No newline at end of file diff --git a/config/blueprints/template/homeassistant/inverted_binary_sensor.yaml b/config/blueprints/template/homeassistant/inverted_binary_sensor.yaml deleted file mode 100644 index 5be18404..00000000 --- a/config/blueprints/template/homeassistant/inverted_binary_sensor.yaml +++ /dev/null @@ -1,27 +0,0 @@ -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') }}"