Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
5dd003e994
|
|||
|
6cf0b6daee
|
|||
|
6b2747c518
|
|||
|
b3f8df03d4
|
|||
|
e51143f2ba
|
|||
|
d245b90092
|
|||
|
aad02f646b
|
|||
|
5e9d0efdca
|
|||
|
4fa09ba107
|
|||
|
8e3a98a30a
|
|||
|
9bdaabcb7d
|
@@ -1 +1 @@
|
||||
2026.1.0
|
||||
2026.2.1
|
||||
@@ -6219,6 +6219,7 @@
|
||||
- input_boolean.tina_morning_meds_taken
|
||||
- input_boolean.tina_night_meds_taken
|
||||
alias: Reset Tina meds taken switches
|
||||
enabled: false
|
||||
mode: restart
|
||||
- id: '1747130058536'
|
||||
alias: Shower Mode Auto Off
|
||||
@@ -6357,3 +6358,50 @@
|
||||
data:
|
||||
hvac_mode: heat
|
||||
mode: restart
|
||||
- id: '1771035023213'
|
||||
alias: Recorder Toggle
|
||||
description: Toggles the recorder on or off, so we can do database maintenance without
|
||||
having to shut down Home Assistant
|
||||
triggers:
|
||||
- trigger: state
|
||||
entity_id:
|
||||
- input_boolean.recorder
|
||||
from:
|
||||
- 'off'
|
||||
to:
|
||||
- 'on'
|
||||
id: recorder-on
|
||||
alias: Recorder On
|
||||
- trigger: state
|
||||
entity_id:
|
||||
- input_boolean.recorder
|
||||
from:
|
||||
- 'on'
|
||||
to:
|
||||
- 'off'
|
||||
id: recorder-off
|
||||
alias: Recorder Off
|
||||
conditions: []
|
||||
actions:
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: trigger
|
||||
id:
|
||||
- recorder-on
|
||||
alias: Recorder On
|
||||
sequence:
|
||||
- action: recorder.enable
|
||||
metadata: {}
|
||||
data: {}
|
||||
alias: Enable Recorder
|
||||
- conditions:
|
||||
- condition: trigger
|
||||
id:
|
||||
- recorder-off
|
||||
alias: Recorder Off
|
||||
sequence:
|
||||
- action: recorder.disable
|
||||
metadata: {}
|
||||
data: {}
|
||||
alias: Disable Recorder
|
||||
mode: restart
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
{% set time = time|default('day') %}
|
||||
{% if method in ['text','dashboard'] %}
|
||||
{% if type in ['current','full'] %}
|
||||
The current weather is {{ states('weather.iron_nerd_weather_station') | lower }}. It is {{ state_attr('weather.iron_nerd_weather_station','temperature') | round }} degrees outside and feels like {{ states('sensor.home_temperature_feels_like') | round }} degrees.
|
||||
The current weather is {{ states('weather.iron_nerd_weather_station') | lower }}. It is {{ state_attr('weather.iron_nerd_weather_station','temperature') | round }} degrees outside and feels like {{ state_attr('weather.iron_nerd_weather_station','apparent_temperature') | round }} degrees.
|
||||
{% endif %}
|
||||
{% if type in ['forecast','full'] %}
|
||||
{% if 14400 <= ct <= 61200 %}
|
||||
|
||||
@@ -25,91 +25,91 @@ template:
|
||||
state: "{{ states('input_datetime.kallen_fan') != states('input_datetime.kallen_bedtime') }}"
|
||||
- name: Living Room Front Hot
|
||||
unique_id: 8fd9db5e-7883-42f3-8918-e78d52c680c6
|
||||
state: "{{ states('sensor.living_room_front_temperature') | float >= 80 }}"
|
||||
state: "{{ (states('sensor.living_room_front_temperature') | float) >= (states('input_number.living_room_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Living Room Front Cold
|
||||
unique_id: 48494ec8-a63f-4244-b619-ff78c44f28e8
|
||||
state: "{{ states('sensor.living_room_front_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.living_room_front_temperature') | float) <= (states('input_number.living_room_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Downstairs Bathroom Hot
|
||||
unique_id: b68adefa-e30e-4454-be21-2743af0f1674
|
||||
state: "{{ states('sensor.downstairs_bathroom_temperature') | float >= 80 }}"
|
||||
state: "{{ (states('sensor.downstairs_bathroom_temperature') | float) >= (states('input_number.downstairs_bathroom_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Downstairs Bathroom Cold
|
||||
unique_id: c477a45e-f11c-4af5-87aa-90f006b74ac5
|
||||
state: "{{ states('sensor.downstairs_bathroom_temperature') | float <= 55 }}"
|
||||
state: "{{ (states('sensor.downstairs_bathroom_temperature') | float) <= (states('input_number.downstairs_bathroom_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Stairwell Bottom Hot
|
||||
unique_id: ebd09e52-c31e-442e-8767-a8083b99c66c
|
||||
state: "{{ states('sensor.stairwell_bottom_temperature') | float >= 80 }}"
|
||||
state: "{{ (states('sensor.stairwell_bottom_temperature') | float) >= (states('input_number.stairwell_bottom_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Stairwell Bottom Cold
|
||||
unique_id: 3f8b5340-0fb4-489f-8df7-c2843316009f
|
||||
state: "{{ states('sensor.stairwell_bottom_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.stairwell_bottom_temperature') | float) <= (states('input_number.stairwell_bottom_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Upstairs Bathroom Hot
|
||||
unique_id: 86394cea-9499-4595-85d1-2a026e8e2b27
|
||||
state: "{{ states('sensor.upstairs_bathroom_temperature') | float >= 80 }}"
|
||||
state: "{{ (states('sensor.upstairs_bathroom_temperature') | float) >= (states('input_number.upstairs_bathroom_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Upstairs Bathroom Cold
|
||||
unique_id: 5d720614-90f0-4e69-8086-8bc0f47a78eb
|
||||
state: "{{ states('sensor.upstairs_bathroom_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.upstairs_bathroom_temperature') | float) <= (states('input_number.upstairs_bathroom_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Emma Bedroom Hot
|
||||
unique_id: b453e23a-f3c9-4fab-bf82-d08af05e8a94
|
||||
state: "{{ states('sensor.emma_bedroom_temperature') | float >= 75 }}"
|
||||
state: "{{ (states('sensor.emma_bedroom_temperature') | float) >= (states('input_number.emma_bedroom_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Emma Bedroom Cold
|
||||
unique_id: 41174b21-a46f-4deb-8dbc-61a356b33db1
|
||||
state: "{{ states('sensor.emma_bedroom_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.emma_bedroom_temperature') | float) <= (states('input_number.emma_bedroom_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Basement Studio Hot
|
||||
unique_id: 2c5626e9-9a3f-43b0-9595-3a15c9434b0f
|
||||
state: "{{ states('sensor.basement_studio_temperature') | float >= 80 }}"
|
||||
state: "{{ (states('sensor.basement_studio_temperature') | float) >= (states('input_number.basement_studio_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Basement Studio Cold
|
||||
unique_id: 985f4f8c-2297-4d32-ace7-818534c5e4b5
|
||||
state: "{{ states('sensor.basement_studio_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.basement_studio_temperature') | float) <= (states('input_number.basement_studio_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Living Room Back Hot
|
||||
unique_id: 9a2be430-9322-492b-a0c1-bb0f034979f5
|
||||
state: "{{ states('sensor.living_room_back_temperature') | float >= 80 }}"
|
||||
state: "{{ (states('sensor.living_room_back_temperature') | float) >= (states('input_number.living_room_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Living Room Back Cold
|
||||
unique_id: 524c2ad1-1f44-42c0-b06b-28a40d439832
|
||||
state: "{{ states('sensor.living_room_back_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.living_room_back_temperature') | float) <= (states('input_number.living_room_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Mud Room Hot
|
||||
unique_id: 920fa45e-8c6e-4518-9aea-5141e15a4350
|
||||
state: "{{ states('sensor.mud_room_temperature') | float >= 80 }}"
|
||||
state: "{{ (states('sensor.mud_room_temperature') | float) >= (states('input_number.mud_room_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Mud Room Cold
|
||||
unique_id: 459998f5-7011-4e96-aa8a-076591a1b1ce
|
||||
state: "{{ states('sensor.mud_room_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.mud_room_temperature') | float) <= (states('input_number.mud_room_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Stairwell Top Hot
|
||||
unique_id: 22d325db-e213-4d7b-81a8-a7ba3798e751
|
||||
state: "{{ states('sensor.stairwell_top_temperature') | float >= 80 }}"
|
||||
state: "{{ (states('sensor.stairwell_top_temperature') | float) >= (states('input_number.stairwell_top_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Stairwell Top Cold
|
||||
unique_id: 925bf2d5-cfa6-4508-98c4-b7ad185ddbc1
|
||||
state: "{{ states('sensor.stairwell_top_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.stairwell_top_temperature') | float) <= (states('input_number.stairwell_top_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Kallen Bedroom Hot
|
||||
unique_id: e47ba60f-e9b2-48d4-899b-f16fdb146e75
|
||||
state: "{{ states('sensor.kallen_bedroom_temperature') | float >= 75 }}"
|
||||
state: "{{ (states('sensor.kallen_bedroom_temperature') | float) >= (states('input_number.kallen_bedroom_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Kallen Bedroom Cold
|
||||
unique_id: 69115462-c159-4f5b-b047-ff8a2600fa7d
|
||||
state: "{{ states('sensor.kallen_bedroom_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.kallen_bedroom_temperature') | float) <= (states('input_number.kallen_bedroom_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- name: Master Bedroom Hot
|
||||
unique_id: ca7c96e5-ea83-4698-a43c-16e09af6d6fd
|
||||
state: "{{ states('sensor.master_bedroom_temperature') | float >= 75 }}"
|
||||
state: "{{ (states('sensor.master_bedroom_temperature') | float) >= (states('input_number.master_bedroom_hot_threshold') | float) }}"
|
||||
device_class: heat
|
||||
- name: Master Bedroom Cold
|
||||
unique_id: 1577cb2c-234d-41c8-a12e-5111a77df958
|
||||
state: "{{ states('sensor.master_bedroom_temperature') | float <= 60 }}"
|
||||
state: "{{ (states('sensor.master_bedroom_temperature') | float) <= (states('input_number.master_bedroom_cold_threshold') | float) }}"
|
||||
device_class: cold
|
||||
- sensor:
|
||||
- name: "Master Bedroom Target Temp"
|
||||
@@ -457,6 +457,146 @@ input_number:
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer
|
||||
living_room_hot_threshold:
|
||||
name: Living Room Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
living_room_cold_threshold:
|
||||
name: Living Room Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
downstairs_bathroom_hot_threshold:
|
||||
name: Downstairs Bathroom Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
downstairs_bathroom_cold_threshold:
|
||||
name: Downstairs Bathroom Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
stairwell_bottom_hot_threshold:
|
||||
name: Stairwell Bottom Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
stairwell_bottom_cold_threshold:
|
||||
name: Stairwell Bottom Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
upstairs_bathroom_hot_threshold:
|
||||
name: Upstairs Bathroom Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
upstairs_bathroom_cold_threshold:
|
||||
name: Upstairs Bathroom Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
emma_bedroom_hot_threshold:
|
||||
name: Emma Bedroom Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
emma_bedroom_cold_threshold:
|
||||
name: Emma Bedroom Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
basement_studio_hot_threshold:
|
||||
name: Basement Studio Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
basement_studio_cold_threshold:
|
||||
name: Basement Studio Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
mud_room_hot_threshold:
|
||||
name: Mud Room Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
mud_room_cold_threshold:
|
||||
name: Mud Room Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
stairwell_top_hot_threshold:
|
||||
name: Stairwell Top Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
stairwell_top_cold_threshold:
|
||||
name: Stairwell Top Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
kallen_bedroom_hot_threshold:
|
||||
name: Kallen Bedroom Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
kallen_bedroom_cold_threshold:
|
||||
name: Kallen Bedroom Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
master_bedroom_hot_threshold:
|
||||
name: Master Bedroom Hot Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-up
|
||||
master_bedroom_cold_threshold:
|
||||
name: Master Bedroom Cold Threshold
|
||||
min: 50
|
||||
max: 80
|
||||
step: 1
|
||||
unit_of_measurement: °F
|
||||
icon: mdi:thermometer-chevron-down
|
||||
|
||||
climate:
|
||||
- platform: generic_thermostat
|
||||
|
||||
@@ -34,9 +34,9 @@ template:
|
||||
{{ states(sensor) | float }}
|
||||
apparent_temperature_template: >
|
||||
{% set apparent_temps = [
|
||||
states.sensor.home_tempest_feels_like,
|
||||
states.sensor.home_temperature_feels_like,
|
||||
states.sensor.pirateweather_apparent_temperature,
|
||||
states.sensor.home_temperature_feels_like,
|
||||
states.sensor.home_tempest_feels_like,
|
||||
states.sensor.stratton_ave_apparent_temperature
|
||||
] %}
|
||||
{% set sensor = apparent_temps | selectattr('state','ne','unavailable') | selectattr('state','ne','unknown') | map(attribute='entity_id') | list | first %}
|
||||
@@ -148,9 +148,9 @@ template:
|
||||
{{ states(sensor) | float }}
|
||||
apparent_temperature_template: >
|
||||
{% set apparent_temps = [
|
||||
states.sensor.home_tempest_feels_like,
|
||||
states.sensor.home_temperature_feels_like,
|
||||
states.sensor.pirateweather_apparent_temperature,
|
||||
states.sensor.home_temperature_feels_like,
|
||||
states.sensor.home_tempest_feels_like,
|
||||
states.sensor.stratton_ave_apparent_temperature
|
||||
] %}
|
||||
{% set sensor = apparent_temps | selectattr('state','ne','unavailable') | selectattr('state','ne','unknown') | map(attribute='entity_id') | list | first %}
|
||||
|
||||
@@ -156,7 +156,7 @@ template:
|
||||
unique_id: 87653f3a-203c-4dbf-87e8-70bcacf6eb22
|
||||
state: >
|
||||
{% from 'sports.jinja' import sports_inhibit %}
|
||||
{{ sports_inhibit('sensor.minnesota_golden_gophers_hockey') }}
|
||||
{{ state_attr('sensor.minnesota_golden_gophers_hockey','opponent_abbr') in ['MICH','MNST'] or sports_inhibit('sensor.minnesota_golden_gophers_hockey') }}
|
||||
- name: Minnesota Golden Gophers Hockey Event Today
|
||||
unique_id: 1f4ff7eb-cbc9-4c81-a5c9-6523b5fb52ff
|
||||
state: >
|
||||
@@ -166,7 +166,7 @@ template:
|
||||
unique_id: bd15870d-bccb-4c52-9690-473c31bb4090
|
||||
state: >
|
||||
{% from 'sports.jinja' import sports_inhibit %}
|
||||
{{ sports_inhibit('sensor.minnesota_state_mavericks_hockey') }}
|
||||
{{ state_attr('sensor.minnesota_state_mavericks_hockey','opponent_abbr') in ['MICH'] or sports_inhibit('sensor.minnesota_state_mavericks_hockey') }}
|
||||
- name: Minnesota State Mavericks Hockey Event Today
|
||||
unique_id: e403be15-3ff2-47b1-8398-70f8ccb65026
|
||||
state: >
|
||||
|
||||
@@ -2,6 +2,9 @@ input_boolean:
|
||||
server_maintenance:
|
||||
name: Server Maintenance
|
||||
icon: mdi:wrench-clock
|
||||
recorder:
|
||||
name: Recorder
|
||||
icon: mdi:database
|
||||
|
||||
input_select:
|
||||
log_level:
|
||||
|
||||
@@ -57,6 +57,7 @@ ## HACS Components
|
||||
- [Union Pacific Big Boy Tracker](https://github.com/jheizer/up_4014_tracker)
|
||||
- [WeatherFlow Forecast](https://github.com/briis/weatherflow_forecast)
|
||||
- [NWS SPC Outlook](https://github.com/sedward5/nws_spc_outlook)
|
||||
- [Music Assistant Queue Actions](https://github.com/droans/mass_queue)
|
||||
|
||||
</details>
|
||||
|
||||
@@ -113,6 +114,7 @@ ## HACS Lovelace Cards
|
||||
- [Versatile Thermostat UI Card](https://github.com/jmcollin78/versatile-thermostat-ui-card)
|
||||
- [Gauge Card Pro](https://github.com/benjamin-dcs/gauge-card-pro)
|
||||
- [AdGuard Card](https://github.com/homeassistant-extras/adguard-card)
|
||||
- [Music Assistant Player Card](https://github.com/droans/mass-player-card)
|
||||
|
||||
</details>
|
||||
|
||||
|
||||
387
scripts.yaml
387
scripts.yaml
@@ -2673,137 +2673,288 @@ kallen_night_meds:
|
||||
reset_annc_switches:
|
||||
alias: Reset Announcement Switches
|
||||
sequence:
|
||||
- service: input_boolean.turn_off
|
||||
target:
|
||||
- target:
|
||||
entity_id:
|
||||
- input_boolean.good_morning
|
||||
- input_boolean.daily_briefing
|
||||
- input_boolean.nightly_briefing
|
||||
- input_boolean.kallen_morning_briefing
|
||||
- input_boolean.kallen_nightly_briefing
|
||||
- input_boolean.basement_briefing
|
||||
data: {}
|
||||
action: input_boolean.turn_off
|
||||
alias: Turn off housewide briefing switches
|
||||
- if:
|
||||
- condition: state
|
||||
entity_id: binary_sensor.basement_occupied
|
||||
state:
|
||||
- 'off'
|
||||
then:
|
||||
- action: input_boolean.turn_off
|
||||
metadata: {}
|
||||
target:
|
||||
entity_id: input_boolean.basement_briefing
|
||||
data: {}
|
||||
alias: Turn off basement briefing switch if basement is not occupied
|
||||
mode: single
|
||||
icon: mdi:bullhorn-outline
|
||||
emma_rainbow_lights:
|
||||
alias: Emma Rainbow Lights
|
||||
sequence:
|
||||
- service: switch.turn_off
|
||||
metadata: {}
|
||||
data: {}
|
||||
target:
|
||||
entity_id:
|
||||
- switch.adaptive_lighting_living_room
|
||||
- switch.adaptive_lighting_sleep_mode_living_room
|
||||
alias: Turn off adaptive lighting
|
||||
- service: lifx.effect_stop
|
||||
metadata: {}
|
||||
data: {}
|
||||
target:
|
||||
entity_id: light.living_room_led_strip
|
||||
alias: Stop any current light strip effects
|
||||
- alias: Choose Effect
|
||||
choose:
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect in [''Rainbow'',null] }}'
|
||||
alias: Rainbow
|
||||
value_template: '{{ who == ''Living Room'' }}'
|
||||
alias: Living Room
|
||||
sequence:
|
||||
- service: light.turn_on
|
||||
metadata: {}
|
||||
data:
|
||||
effect: prism
|
||||
target:
|
||||
entity_id: light.living_room_overhead
|
||||
alias: Turn on living room overhead in prism effect
|
||||
- service: lifx.effect_move
|
||||
metadata: {}
|
||||
data:
|
||||
speed: 8
|
||||
direction: right
|
||||
theme: exciting
|
||||
power_on: true
|
||||
target:
|
||||
entity_id: light.living_room_led_strip
|
||||
alias: Turn on living room LED strip in exciting theme with move effect
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect == ''Blue'' }}'
|
||||
alias: Blue
|
||||
sequence:
|
||||
- service: light.turn_on
|
||||
metadata: {}
|
||||
data:
|
||||
rgb_color:
|
||||
- 0
|
||||
- 0
|
||||
- 255
|
||||
brightness_pct: 100
|
||||
target:
|
||||
entity_id: light.living_room_lights
|
||||
alias: Turn on living room lights, set to blue
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect == ''Purple'' }}'
|
||||
alias: Purple
|
||||
sequence:
|
||||
- service: light.turn_on
|
||||
metadata: {}
|
||||
data:
|
||||
rgb_color:
|
||||
- 134
|
||||
- 0
|
||||
- 211
|
||||
brightness_pct: 100
|
||||
target:
|
||||
entity_id: light.living_room_lights
|
||||
alias: Turn on living room lights, set to purple
|
||||
- conditions:
|
||||
- alias: Green
|
||||
condition: template
|
||||
value_template: '{{ effect == ''Green'' }}'
|
||||
sequence:
|
||||
- alias: Turn on living room lights, set to green
|
||||
service: light.turn_on
|
||||
metadata: {}
|
||||
data:
|
||||
rgb_color:
|
||||
- 0
|
||||
- 255
|
||||
- 0
|
||||
brightness_pct: 100
|
||||
target:
|
||||
entity_id: light.living_room_lights
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect == ''Tokyo'' }}'
|
||||
alias: Tokyo
|
||||
sequence:
|
||||
- service: input_boolean.turn_on
|
||||
metadata: {}
|
||||
- metadata: {}
|
||||
data: {}
|
||||
target:
|
||||
entity_id: input_boolean.living_room_dynamic_scenes
|
||||
alias: Turn on dynamic scenes
|
||||
- service: input_select.select_option
|
||||
metadata: {}
|
||||
data:
|
||||
option: Tokyo
|
||||
target:
|
||||
entity_id: input_select.living_room_scenes
|
||||
alias: Activate Tokyo scene in Living Room
|
||||
- alias: Turn on living room LED strip in intense theme with move effect
|
||||
service: lifx.effect_move
|
||||
metadata: {}
|
||||
data:
|
||||
speed: 8
|
||||
direction: right
|
||||
theme: intense
|
||||
power_on: true
|
||||
entity_id:
|
||||
- switch.adaptive_lighting_living_room
|
||||
- switch.adaptive_lighting_sleep_mode_living_room
|
||||
alias: Turn off adaptive lighting
|
||||
action: switch.turn_off
|
||||
- metadata: {}
|
||||
data: {}
|
||||
target:
|
||||
entity_id: light.living_room_led_strip
|
||||
mode: restart
|
||||
icon: fas:rainbow
|
||||
alias: Stop any current light strip effects
|
||||
action: lifx.effect_stop
|
||||
- alias: Choose Effect
|
||||
choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect in [''Rainbow'',null] }}'
|
||||
alias: Rainbow
|
||||
sequence:
|
||||
- metadata: {}
|
||||
data:
|
||||
effect: prism
|
||||
target:
|
||||
entity_id: light.living_room_overhead
|
||||
alias: Turn on living room overhead in prism effect
|
||||
action: light.turn_on
|
||||
- metadata: {}
|
||||
data:
|
||||
speed: 8
|
||||
direction: right
|
||||
theme: exciting
|
||||
power_on: true
|
||||
target:
|
||||
entity_id: light.living_room_led_strip
|
||||
alias: Turn on living room LED strip in exciting theme with move effect
|
||||
action: lifx.effect_move
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect == ''Blue'' }}'
|
||||
alias: Blue
|
||||
sequence:
|
||||
- metadata: {}
|
||||
data:
|
||||
rgb_color:
|
||||
- 0
|
||||
- 0
|
||||
- 255
|
||||
brightness_pct: 100
|
||||
target:
|
||||
entity_id: light.living_room_lights
|
||||
alias: Turn on living room lights, set to blue
|
||||
action: light.turn_on
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect == ''Purple'' }}'
|
||||
alias: Purple
|
||||
sequence:
|
||||
- metadata: {}
|
||||
data:
|
||||
rgb_color:
|
||||
- 134
|
||||
- 0
|
||||
- 211
|
||||
brightness_pct: 100
|
||||
target:
|
||||
entity_id: light.living_room_lights
|
||||
alias: Turn on living room lights, set to purple
|
||||
action: light.turn_on
|
||||
- conditions:
|
||||
- alias: Green
|
||||
condition: template
|
||||
value_template: '{{ effect == ''Green'' }}'
|
||||
sequence:
|
||||
- alias: Turn on living room lights, set to green
|
||||
metadata: {}
|
||||
data:
|
||||
rgb_color:
|
||||
- 0
|
||||
- 255
|
||||
- 0
|
||||
brightness_pct: 100
|
||||
target:
|
||||
entity_id: light.living_room_lights
|
||||
action: light.turn_on
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect == ''Tokyo'' }}'
|
||||
alias: Tokyo
|
||||
sequence:
|
||||
- metadata: {}
|
||||
data: {}
|
||||
target:
|
||||
entity_id: input_boolean.living_room_dynamic_scenes
|
||||
alias: Turn on dynamic scenes
|
||||
action: input_boolean.turn_on
|
||||
- metadata: {}
|
||||
data:
|
||||
option: Tokyo
|
||||
target:
|
||||
entity_id: input_select.living_room_scenes
|
||||
alias: Activate Tokyo scene in Living Room
|
||||
action: input_select.select_option
|
||||
- alias: Turn on living room LED strip in intense theme with move effect
|
||||
metadata: {}
|
||||
data:
|
||||
speed: 8
|
||||
direction: right
|
||||
theme: intense
|
||||
power_on: true
|
||||
target:
|
||||
entity_id: light.living_room_led_strip
|
||||
action: lifx.effect_move
|
||||
- conditions:
|
||||
- alias: Basement Studio
|
||||
condition: template
|
||||
value_template: '{{ who == ''Basement Studio'' }}'
|
||||
sequence:
|
||||
- alias: Turn off adaptive lighting
|
||||
metadata: {}
|
||||
data: {}
|
||||
action: switch.turn_off
|
||||
target:
|
||||
entity_id:
|
||||
- switch.adaptive_lighting_basement_studio
|
||||
- switch.adaptive_lighting_sleep_mode_basement_studio
|
||||
- alias: Stop any current light strip effects
|
||||
metadata: {}
|
||||
data: {}
|
||||
action: lifx.effect_stop
|
||||
target:
|
||||
entity_id: light.basement_led_strip_1
|
||||
- alias: Choose Effect
|
||||
choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect in [''Rainbow'',null] }}'
|
||||
alias: Rainbow
|
||||
sequence:
|
||||
- metadata: {}
|
||||
data:
|
||||
effect: prism
|
||||
target:
|
||||
entity_id: light.basement_tall_lamp
|
||||
alias: Turn on basement tall lamp in prism effect
|
||||
action: light.turn_on
|
||||
- metadata: {}
|
||||
data:
|
||||
effect: prism
|
||||
target:
|
||||
entity_id: light.basement_short_lamp
|
||||
alias: Turn on basement short lamp in prism effect
|
||||
action: light.turn_on
|
||||
- metadata: {}
|
||||
data:
|
||||
effect: prism
|
||||
target:
|
||||
entity_id: light.basement_stairwell
|
||||
alias: Turn on basement stairwell in prism effect
|
||||
action: light.turn_on
|
||||
- metadata: {}
|
||||
data:
|
||||
speed: 8
|
||||
direction: right
|
||||
theme: exciting
|
||||
power_on: true
|
||||
target:
|
||||
entity_id: light.basement_led_strip_1
|
||||
alias: Turn on basement studio LED strip in exciting theme with move effect
|
||||
action: lifx.effect_move
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect == ''Blue'' }}'
|
||||
alias: Blue
|
||||
sequence:
|
||||
- metadata: {}
|
||||
data:
|
||||
rgb_color:
|
||||
- 0
|
||||
- 0
|
||||
- 255
|
||||
brightness_pct: 100
|
||||
target:
|
||||
entity_id: light.basement_studio_lights
|
||||
alias: Turn on basement studio lights, set to blue
|
||||
action: light.turn_on
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect == ''Purple'' }}'
|
||||
alias: Purple
|
||||
sequence:
|
||||
- metadata: {}
|
||||
data:
|
||||
rgb_color:
|
||||
- 134
|
||||
- 0
|
||||
- 211
|
||||
brightness_pct: 100
|
||||
target:
|
||||
entity_id: light.basement_studio_lights
|
||||
alias: Turn on basement studio lights, set to purple
|
||||
action: light.turn_on
|
||||
- conditions:
|
||||
- alias: Green
|
||||
condition: template
|
||||
value_template: '{{ effect == ''Green'' }}'
|
||||
sequence:
|
||||
- alias: Turn on basement studio lights, set to green
|
||||
metadata: {}
|
||||
data:
|
||||
rgb_color:
|
||||
- 0
|
||||
- 255
|
||||
- 0
|
||||
brightness_pct: 100
|
||||
target:
|
||||
entity_id: light.basement_studio_lights
|
||||
action: light.turn_on
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: '{{ effect == ''Tokyo'' }}'
|
||||
alias: Tokyo
|
||||
sequence:
|
||||
- metadata: {}
|
||||
data: {}
|
||||
target:
|
||||
entity_id: input_boolean.basement_studio_dynamic_scenes
|
||||
alias: Turn on dynamic scenes
|
||||
action: input_boolean.turn_on
|
||||
- metadata: {}
|
||||
data:
|
||||
option: Tokyo
|
||||
target:
|
||||
entity_id: input_select.basement_studio_scenes
|
||||
alias: Activate Tokyo scene in basement studio
|
||||
action: input_select.select_option
|
||||
- alias: Turn on basement studio LED strip in intense theme with move effect
|
||||
metadata: {}
|
||||
data:
|
||||
speed: 8
|
||||
direction: right
|
||||
theme: intense
|
||||
power_on: true
|
||||
target:
|
||||
entity_id: light.basement_led_strip_1
|
||||
action: lifx.effect_move
|
||||
mode: queued
|
||||
icon: fa7-solid:rainbow
|
||||
fields:
|
||||
effect:
|
||||
selector:
|
||||
@@ -2819,6 +2970,18 @@ emma_rainbow_lights:
|
||||
description: What type of effect would you like to run?
|
||||
default: Rainbow
|
||||
required: true
|
||||
who:
|
||||
selector:
|
||||
select:
|
||||
options:
|
||||
- Living Room
|
||||
- Basement Studio
|
||||
multiple: false
|
||||
default: Living Room
|
||||
name: Who
|
||||
description: In which room should the effect run?
|
||||
required: true
|
||||
max: 10
|
||||
rabbit_feeding:
|
||||
alias: Rabbit Feeding
|
||||
sequence:
|
||||
|
||||
Reference in New Issue
Block a user