blueprint.yaml aktualisiert
This commit is contained in:
parent
166577979a
commit
4dbc628be1
1 changed files with 6 additions and 7 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
blueprint:
|
blueprint:
|
||||||
name: Better Thermostat Multi-Mode Controller
|
name: Better Thermostat Multi-Mode Controller
|
||||||
description: Steuert Better Thermostat mit Sommer/Winter (Wetterbasiert), Schedule, Anwesenheit (optional) und Urlaubs-Button
|
description: Steuert Better Thermostat mit Sommer/Winter (Wetterbasiert), Schedule und Urlaubs-Button
|
||||||
domain: automation
|
domain: automation
|
||||||
input:
|
input:
|
||||||
better_thermostat_entity:
|
better_thermostat_entity:
|
||||||
|
|
@ -33,8 +33,8 @@ blueprint:
|
||||||
default: 25
|
default: 25
|
||||||
selector:
|
selector:
|
||||||
number:
|
number:
|
||||||
min: 17
|
min: 20
|
||||||
max: 50
|
max: 35
|
||||||
step: 1
|
step: 1
|
||||||
winter_temp_threshold:
|
winter_temp_threshold:
|
||||||
name: Winter-Schwellwert (°C)
|
name: Winter-Schwellwert (°C)
|
||||||
|
|
@ -57,7 +57,7 @@ blueprint:
|
||||||
comfort_temp:
|
comfort_temp:
|
||||||
name: Komfort Temperatur (°C)
|
name: Komfort Temperatur (°C)
|
||||||
description: Temperatur wenn Schedule aktiv
|
description: Temperatur wenn Schedule aktiv
|
||||||
default: 20
|
default: 21
|
||||||
selector:
|
selector:
|
||||||
number:
|
number:
|
||||||
min: 18
|
min: 18
|
||||||
|
|
@ -89,10 +89,9 @@ action:
|
||||||
- variables:
|
- variables:
|
||||||
forecast: "{{ state_attr(weather_entity, 'forecast') }}"
|
forecast: "{{ state_attr(weather_entity, 'forecast') }}"
|
||||||
weather_temp: "{{ forecast[0].temperature if forecast and forecast|length > 0 else 15 }}"
|
weather_temp: "{{ forecast[0].temperature if forecast and forecast|length > 0 else 15 }}"
|
||||||
is_summer: "{{ weather_temp | float(15) > summer_threshold | float(25) }}"
|
is_summer: "{{ (weather_temp | float(15)) > (summer_threshold | float(25)) }}"
|
||||||
is_winter: "{{ weather_temp | float(15) < winter_threshold | float(10) }}"
|
is_winter: "{{ (weather_temp | float(15)) < (winter_threshold | float(10)) }}"
|
||||||
is_vacation: "{{ states(vacation_entity) == 'on' }}"
|
is_vacation: "{{ states(vacation_entity) == 'on' }}"
|
||||||
is_present: true
|
|
||||||
schedule_active: "{{ states(schedule_entity) == 'on' }}"
|
schedule_active: "{{ states(schedule_entity) == 'on' }}"
|
||||||
|
|
||||||
- choose:
|
- choose:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue