Shutter Delay

Hello,

I want to delay the closing of my shutters.

Example: The shutters in the kitchen close at 9 a.m., but the shutters in the living room should close with a 30 minute delay.

How can I do that?

Thanks

alias: Shutter close summer
description: Shutter close summer
trigger:
  - platform: time
    at: "09:00:00"
condition: []
action:
  - device_id: 1234567890
    domain: cover
    entity_id: 1234567890
    type: close
    delay:
  - device_id: 0987654321
    domain: cover
    entity_id: 0987654321
    type: close
  - device_id: 1234509876
    domain: cover
    entity_id: 1234509876
    type: close
mode: single

Try with the living room one at the last position and this code before


  - delay:
      hours: 0
      minutes: 30
      seconds: 0
      milliseconds: 0

Thanks it works

1 Like