Quantcast
Channel: Configuration - Home Assistant Community
Viewing all articles
Browse latest Browse all 95919

Different coloured lights on different days

$
0
0

@HenryV wrote:

Hello,

I have some Hue lights and use an automation to have different coloured lights if its day or night. I would like to have a different coloured light during the day for each week day so something like

if between 06:00 and 00:10
and day = Mon
colour = yellow
or = day = Tue
colour = red

ect…

I’m hoping there is a way of using the if statement and Time condition in the automations but I’m not sure how to do it.

my current automation is:

- id: '001'
  alias: Hall Lights On Day
  description: ''
  trigger:
  - entity_id: binary_sensor.hue_motion_sensor_1_motion
    platform: state
    to: 'on'
  condition:
  - below: '100'
    condition: numeric_state
    entity_id: sensor.hue_motion_sensor_1_light_level
  - condition: and
    conditions:
    - after: 06:00
      before: 00:00
      condition: time
  action:
  - alias: ''
    data:
      brightness: 200
      rgb_color:
      - 255
      - 240
      - 240
    entity_id: light.hall_upstairs_3
    service: light.turn_on
  - data:
      brightness: 200
      rgb_color:
      - 255
      - 240
      - 240
    entity_id: light.hall_downstairs_3
    service: light.turn_on

Posts: 4

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 95919

Trending Articles