I just typed this out but apparently it was too long. I will try to keep this brief:
- I modified and am using this blueprint here: https://community.home-assistant.io/t/zooz-zen30-double-switch-automation-helper/281362/6?u=muddro
- Main changes were to allow multiple devices (I have 3 zen30s that I want to do the same thing)
- I have an automation in the blue print to dim or brighten some fan lights when the paddle is held down
- An example of the automation would be as follows:
- repeat:
sequence:
- data:
brightness_step_pct: 10
target:
entity_id:
- light.office_lamp_group
action: light.turn_on
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 200
until:
- condition: not
conditions:
- condition: state
entity_id: event.bedroom_controller_scene_001
attribute: event_type
state: KeyHeldDown
alias: Dimmer Up```
Home Assistant Community
For anyone who needs it, I updated the blueprint to allow for multiple devices in one automation, in case you have a few zen 30s that do the same thing and you want to control with one automation. blueprint: name: Zooz ZEN30 description: Automations helper for the Zooz ZEN30 Double Switch using the Zwave JS integration. domain: automa...