mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-09-07 18:28:43 +00:00
Use iif
This commit is contained in:
@@ -48,13 +48,7 @@ automation:
|
||||
- service: light.turn_on
|
||||
data_template:
|
||||
entity_id: light.master_bedroom_main
|
||||
brightness_pct: >-
|
||||
|
||||
{% if not is_state('input_select.bedroom_mode', 'day') %}
|
||||
40
|
||||
{% else %}
|
||||
100
|
||||
{% endif %}
|
||||
brightness_pct: "{{ is_state('input_select.bedroom_mode', 'day') | iif(100, 40) }}"
|
||||
|
||||
button_1_triple:
|
||||
- service: light.turn_off
|
||||
@@ -68,13 +62,7 @@ automation:
|
||||
entity_id:
|
||||
- light.bedside
|
||||
- light.bed_led
|
||||
brightness_pct: >-
|
||||
|
||||
{% if not is_state('input_select.bedroom_mode', 'day') %}
|
||||
40
|
||||
{% else %}
|
||||
100
|
||||
{% endif %}
|
||||
brightness_pct: "{{ is_state('input_select.bedroom_mode', 'day') | iif(100, 40) }}"
|
||||
|
||||
button_3_single:
|
||||
- service: media_player.media_play_pause
|
||||
|
||||
@@ -30,13 +30,11 @@ automation:
|
||||
{% elif is_state('input_select.bedroom_mode', 'bed') %}
|
||||
light.bedside
|
||||
{% endif %}
|
||||
brightness_pct: >-
|
||||
{% if is_state('input_select.bedroom_mode', 'night') %} 40 {% else %} 100 {% endif %}
|
||||
brightness_pct: "{{ is_state('input_select.bedroom_mode', 'night') | iif(40, 100)}}"
|
||||
|
||||
- service: script.bed_led_toggle
|
||||
data_template:
|
||||
brightness_pct: >-
|
||||
{% if is_state('input_select.bedroom_mode', 'night') %} 40 {% else %} 100 {% endif %}
|
||||
brightness_pct: "{{ is_state('input_select.bedroom_mode', 'night') | iif(40, 100)}}"
|
||||
|
||||
|
||||
double_click:
|
||||
@@ -46,8 +44,7 @@ automation:
|
||||
brightness_pct: 100
|
||||
- service: script.bed_led_toggle
|
||||
data_template:
|
||||
brightness_pct: >-
|
||||
{% if is_state('input_select.bedroom_mode', 'night') %} 40 {% else %} 100 {% endif %}
|
||||
brightness_pct: "{{ is_state('input_select.bedroom_mode', 'night') | iif(40, 100)}}"
|
||||
|
||||
hold:
|
||||
- service: input_select.select_next
|
||||
|
||||
@@ -79,11 +79,7 @@ sensor:
|
||||
friendly_name: Function
|
||||
value_template: "{{ state_attr('fan.philips_airpurifier', 'function') }}"
|
||||
icon_template: >-
|
||||
{% if state_attr('fan.philips_airpurifier', 'function') == 'Purification' %}
|
||||
{{ 'mdi:air-purifier' }}
|
||||
{% else %}
|
||||
{{ 'mdi:air-humidifier' }}
|
||||
{% endif %}
|
||||
{{ state_attr('fan.philips_airpurifier', 'function') == 'Purification' | iif('mdi:air-purifier', 'mdi:air-humidifier') }}
|
||||
purifier_pre_filter:
|
||||
friendly_name: Pre-filter
|
||||
unit_of_measurement: "Hrs"
|
||||
@@ -160,11 +156,7 @@ script:
|
||||
entity_id: fan.philips_airpurifier
|
||||
data_template:
|
||||
function: >-
|
||||
{% if state_attr('fan.philips_airpurifier', 'function') == 'Purification' %}
|
||||
{{ 'Purification & Humidification' }}
|
||||
{% else %}
|
||||
{{ 'Purification' }}
|
||||
{% endif %}
|
||||
{{ state_attr('fan.philips_airpurifier', 'function') == 'Purification' | iif('Purification & Humidification', 'Purification') }}
|
||||
|
||||
automation:
|
||||
- alias: Purifier · On start · Sync and update state
|
||||
|
||||
Reference in New Issue
Block a user