I have several Zooz switches such as the ZEN30. On some of them, I have enabled Scene Control in the configuration and I use Down 3x to trigger HA scenes. It works but it is really really really slow. For example, it takes 35 seconds to activate the “RB” scene which sets the state of 21 devices in the house. If I activate that scene from with HA, it is instantaneous; under 1 second.
I have this HA automation attached to the ZEN30:
alias: Living Room Light Down 3x
description: RB
triggers:
- device_id: 9f86efb0f8f06d8f094fb340faef5df3
domain: zwave_js
type: event.value_notification.central_scene
property: scene
property_key: "002"
endpoint: 0
command_class: 91
subtype: Endpoint 0 Scene 002
trigger: device
value: 4
conditions: []
actions:
- action: scene.turn_on
metadata: {}
data: {}
target:
entity_id: scene.rb
mode: single
It triggers the HA scene “rb” but it takes about 35 seconds to run after I press the down paddle 3x.
I also have a card on a dashboard that has an entry to activate the scene. The card is nothing fancy but here is the code:
type: entities
entities:
- <snip>
- entity: scene.rb
title: Scenes
show_header_toggle: false
When I activate the scene from the card, it is instantaneous.
Why is that happening?
– Art Z.