I’ve set up an automation to change my Hue lights to a set scene depending on what time it is the following is the config Im using. Im wondering if this is the best way to have it set up
#### Set Hue scene to Relax
- alias: Watch TV Morning
trigger:
- platform: state
entity_id: input_select.harmony
to: Watch TV
condition:
- after: '05:00:00'
before: '08:00:00'
condition: time
action:
service: light.hue_activate_scene
data:
group_name: Living room
scene_name: Relax
#### Set Hue scene to Tropical twilight
- alias: Watch TV Daytime
trigger:
- platform: state
entity_id: input_select.harmony
to: Watch TV
condition:
- after: '08:00:00'
before: '16:00:00'
condition: time
action:
service: light.hue_activate_scene
data:
group_name: Living room
scene_name: Tropical twilight
#### Set Hue scene to Multicolour
- alias: Watch TV Evening
trigger:
- platform: state
entity_id: input_select.harmony
to: Watch TV
condition:
- after: '16:00:00'
before: '05:00:00'
condition: time
action:
service: light.hue_activate_scene
data:
group_name: Living room
scene_name: Multicolour