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