Adjust for new option names #52
This commit is contained in:
Submodule node-red/projects/NerdFlows updated: 1e80a66f62...2e3caa7567
@ -77,27 +77,27 @@ input_select:
|
||||
options:
|
||||
- AC
|
||||
- Fan
|
||||
- None
|
||||
- N/A
|
||||
icon: mdi:home-thermometer
|
||||
scheduled_climate_mode_master_bedroom_fan:
|
||||
name: Scheduled Climate Mode - Master Bedroom Fan
|
||||
options:
|
||||
- Fan
|
||||
- None
|
||||
- N/A
|
||||
icon: mdi:home-thermometer
|
||||
scheduled_climate_mode_nursery_aircon:
|
||||
name: Scheduled Climate Mode - Nursery Aircon
|
||||
options:
|
||||
- AC
|
||||
- White Noise
|
||||
- None
|
||||
- N/A
|
||||
icon: mdi:home-thermometer
|
||||
scheduled_climate_mode_kallen_fan:
|
||||
name: Scheduled Climate Mode - Kallen Fan
|
||||
options:
|
||||
- Fan
|
||||
- White Noise
|
||||
- None
|
||||
- N/A
|
||||
icon: mdi:home-thermometer
|
||||
|
||||
input_number:
|
||||
|
@ -398,7 +398,7 @@ script:
|
||||
Fan
|
||||
{% endif %}
|
||||
{% else %}
|
||||
None
|
||||
N/A
|
||||
{% endif %}
|
||||
- service: input_select.select_option
|
||||
target:
|
||||
@ -408,7 +408,7 @@ script:
|
||||
{% if states('sensor.tonights_low_temp') >= states('input_number.master_bedroom_fan_threshold') %}
|
||||
Fan
|
||||
{% else %}
|
||||
None
|
||||
N/A
|
||||
{% endif %}
|
||||
|
||||
nursery_scheduling:
|
||||
|
@ -48,13 +48,13 @@
|
||||
"The master bedroom air conditioner will activate cooling mode at {{ (state_attr('input_datetime.master_bedroom_cooling','timestamp') | int | timestamp_custom('%I:%M %p', False)) }}. "
|
||||
{% elif is_state('input_select.scheduled_climate_mode_master_bedroom_aircon','Fan') %}
|
||||
"The master bedroom air conditioner will activate fan only mode at {{ (state_attr('input_datetime.master_bedroom_cooling','timestamp') | int | timestamp_custom('%I:%M %p', False)) }}. "
|
||||
{% elif is_state('input_select.scheduled_climate_mode_master_bedroom_aircon','None') %}
|
||||
{% elif is_state('input_select.scheduled_climate_mode_master_bedroom_aircon','N/A') %}
|
||||
"The master bedroom air conditioner will remain inactive tonight. "
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if is_state('input_select.scheduled_climate_mode_master_bedroom_fan','Fan') %}
|
||||
"The master bedroom fan will activate at {{ (state_attr('input_datetime.master_bedroom_fan','timestamp') | int | timestamp_custom('%I:%M %p', False)) }}. "
|
||||
{% elif is_state('input_select.scheduled_climate_mode_master_bedroom_fan','None') %}
|
||||
{% elif is_state('input_select.scheduled_climate_mode_master_bedroom_fan','N/A') %}
|
||||
"The master bedroom fan will remain inactive tonight. "
|
||||
{% endif %}
|
||||
{% if is_state('input_boolean.kallen_overnight','off') %}
|
||||
@ -62,21 +62,19 @@
|
||||
"Colins fan will activate at {{ (state_attr('input_datetime.kallen_bedtime','timestamp') | int | timestamp_custom('%I:%M %p', False)) }}. "
|
||||
{% elif is_state('input_select.scheduled_climate_mode_kallen_fan','White Noise') %}
|
||||
"Colins white noise generator will activate at {{ (state_attr('input_datetime.kallen_bedtime','timestamp') | int | timestamp_custom('%I:%M %p', False)) }}. "
|
||||
{% elif is_state('input_select.scheduled_climate_mode_kallen_fan','None') %}
|
||||
{% elif is_state('input_select.scheduled_climate_mode_kallen_fan','N/A') %}
|
||||
"Colins room will have no devices activated tonight. "
|
||||
{% endif %}
|
||||
{% else %}
|
||||
"Colins room will be left alone, as he is spending the night elsewhere tonight. "
|
||||
{% endif %}
|
||||
{% if is_state('input_boolean.nursery_aircon_installed','on') %}
|
||||
{% if is_state('input_select.scheduled_climate_mode_nursery_aircon','AC') %}
|
||||
"Emma's air conditioner will be activated at {{ (state_attr('input_datetime.nursery_cooling','timestamp') | int | timestamp_custom('%I:%M %p', False)) }}. "
|
||||
{% elif is_state('input_select.scheduled_climate_mode_nursery_aircon','White Noise') %}
|
||||
"Emma's white noise generator will activate at {{ (state_attr('input_datetime.nursery_cooling','timestamp') | int | timestamp_custom('%I:%M %p', False)) }}. "
|
||||
{% elif is_state('input_select.scheduled_climate_mode_nursery_aircon','None') %}
|
||||
{% elif is_state('input_select.scheduled_climate_mode_nursery_aircon','N/A') %}
|
||||
"Emma's room will have no devices activated tonight. "
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
Reference in New Issue
Block a user