Lamp 2 turns on when lamp 1 is on for 1 minute

Hello all,

Can someone tell me how I set in automation that lamp 2 turns on when lamp 1 is on for 10 minutes.

Is this possible?

Thanks for every response.

description: "Light 2 on 10 minutes after light 1"
mode: single
trigger:
  - platform: state
    entity_id:
      - light.not_set_1
    to: "on"
    for:
      hours: 0
      minutes: 10
      seconds: 0
condition: []
action:
  - service: light.turn_on
    data: {}
    target:
      entity_id: light.not_set_2

Thank you very much, it works!!

1 Like

So please flag @BebeMischa’s post as a solution… :wink:

1 Like