move dev to non-dev blueprint

This commit is contained in:
2025-12-06 11:33:21 +01:00
parent f05e0953e1
commit edc263e311

View File

@@ -1,3 +1,4 @@
mode: single
blueprint:
name: Bosch BTH-RA Radiator Control
description: >
@@ -79,18 +80,18 @@ variables:
remote_temperature_entity: >
{% set entities = device_entities(device_id(trv)) %}
{% set remote_temperature_entity_id = namespace(id='') %}
{% for s in entities %}
{% if 'remote_temperature' in s %}
{% set remote_temperature_entity_id.id = s %}
{% for entity in entities %}
{% if 'remote_temperature' in entity %}
{% set remote_temperature_entity_id.id = entity %}
{% endif %}
{% endfor %}
{{ remote_temperature_entity_id.id }}
window_detection_entity: >
{% set entities = device_entities(device_id(trv)) %}
{% set window_detection_entity_id = namespace(id='') %}
{% for s in entities %}
{% if 'window_detection' in s %}
{% set window_detection_entity_id.id = s %}
{% for entity in entities %}
{% if 'window_detection' in entity %}
{% set window_detection_entity_id.id = entity %}
{% endif %}
{% endfor %}
{{ window_detection_entity_id.id }}