move dev to non-dev blueprint
This commit is contained in:
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user