Hi together,
What is my situation:
I set up two Shelly zwave shutters for two different shutters. I can control both of them correctly via the HomeAssistant UI. The state of the shutters is also reflected propperly as open when they are open and closed when they are closed.
So I assume they are set up correctly. I have only for one of the shelly shutters a physical switch attached to it, so I wanted to try an automation that does open the other one when i open the first one by using the switch.
What did I try:
I set up an automation that opens shutter b when shutter a is opening and shutter b is closed.
alias: my alias
description: ""
triggers:
- device_id: 1ecbf14ed9a6f820d9a0688c1d7be66f
domain: cover
entity_id: b91f15ed2117935662fb56f0c8753d5d
type: opening
trigger: device
conditions:
- condition: device
device_id: 950a1f5e462389e5260ab905982c041f
domain: cover
entity_id: f5061d291300c2525ccbfeb913573d36
type: is_closed
enabled: true
actions:
- device_id: 950a1f5e462389e5260ab905982c041f
domain: cover
entity_id: f5061d291300c2525ccbfeb913573d36
type: open
mode: single
But when i tried to Open shutter A, only shutter A opens. Shutter B does nothing.
Could anybody help me? is there a known issue with some events of the shelly shutters?
Edit:
I tried to use a different event. I used the open event of Shutter A. This works, but not as initially intended.
With this automation shutter B starts to open after shutter A finished opening.
alias: R Wz auf wenn R kĂĽche ab
description: ""
triggers:
- device_id: 1ecbf14ed9a6f820d9a0688c1d7be66f
domain: cover
entity_id: b91f15ed2117935662fb56f0c8753d5d
type: opened
trigger: device
conditions:
- condition: device
device_id: 950a1f5e462389e5260ab905982c041f
domain: cover
entity_id: f5061d291300c2525ccbfeb913573d36
type: is_closed
enabled: true
actions:
- device_id: 950a1f5e462389e5260ab905982c041f
domain: cover
entity_id: f5061d291300c2525ccbfeb913573d36
type: open
mode: single
So I assume there is No Event “opening” emitted by shellys shutters. Is there a way to add events or would i just have to make the Trigger more complicated? Something like “Power consumption Changes and state is closed”? This would probably mean that it’s opening.