Turn light on 100% at time/days

I’ve got the following automation whitch turns light on at 20:37 on Monday-Wednesday which works but I want to also set brightness to 100% also. Done a load of googeling and cant find anything that works.

alias: Wake Up Test
description: ""
trigger:
  - platform: time
    at: "20:37:00"
condition:
  - condition: time
    weekday:
      - mon
      - tue
      - wed
action:
  - service: homeassistant.turn_on
    target:
      entity_id:
        - light.mbed_rgb_bulb_cealing
    data: {}
mode: single

Hi, Try this.


alias: Wake Up Test
description: ""
trigger:
  - platform: time
    at: "20:37:00"
condition:
  - condition: time
    weekday:
      - mon
      - tue
      - wed
action:
  - service: light.turn_on
    data:
      brightness_pct: 100
    target:
      entity_id: light.mbed_rgb_bulb_cealing
mode: single

All of the data options for the light turn on service are listed in the light documentation: https://www.home-assistant.io/integrations/light/#service-lightturn_on

And there are examples at the bottom of the service section. Karoly’s example above is one way the other is:

action:
  - service: light.turn_on
    data:
      brightness: 255
    target:
      entity_id: light.mbed_rgb_bulb_cealing
1 Like

Thanks everybosdy, brightness_pct: 100 worked.

1 Like