Hi!
I am having some issued with configuring a Namron dimmer to a Namron 4ch switch.
I have tried to set it up via Automations with the folling YAML:
alias: Bryter bad gang
description: Bryter til bad som står i gangen
trigger:
- platform: device
device_id: device_id
domain: zwave_js
type: event.value_notification.central_scene
property: scene
property_key: "001"
endpoint: 0
command_class: 91
subtype: Endpoint 0 Scene 001
value: 2
id: dim-up
- platform: device
device_id: device_id
domain: zwave_js
type: event.value_notification.central_scene
property: scene
property_key: "002"
endpoint: 0
command_class: 91
subtype: Endpoint 0 Scene 002
id: dim-down
value: 2
- platform: device
device_id: device_id
domain: zwave_js
type: event.value_notification.central_scene
property: scene
property_key: "001"
endpoint: 0
command_class: 91
subtype: Endpoint 0 Scene 001
value: 1
id: dim-up-release
- platform: device
device_id: device_id
domain: zwave_js
type: event.value_notification.central_scene
property: scene
property_key: "002"
endpoint: 0
command_class: 91
subtype: Endpoint 0 Scene 002
value: 1
id: dim-down-release
condition: []
action:
- choose:
- conditions:
- condition: trigger
id: dim-up
sequence:
- repeat:
while:
- condition: trigger
id: dim-up
sequence:
- device_id: device_id
domain: light
entity_id: light.dimmer_bad_1_etg
type: brightness_increase
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
- conditions:
- condition: trigger
id: dim-down
sequence:
- repeat:
while:
- condition: trigger
id: dim-down
sequence:
- device_id: device_id
domain: light
entity_id: light.dimmer_bad_1_etg
type: brightness_decrease
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
mode: restart
However, when I hold switch 1 or 2 down it does not change the brightness until I release the buttons. And when I release it only dims it one step. no matter how long I am hold the buttons.
I followed this guide on YT
I must be doing something wrong here, but I can not figure out what it is.
Any help is appreciated!