I am trying to change the brightness of my light group using a Philips Hue Dimmer. I can get it working if I automate each light on it’s own but wanted to streamline a little.
The lights are turning on/off all the same time but I cannot get the dimmer to work. I’ve tried both using a value % and a set value but it doesn’t change the brightness.
alias: "Entrance Hue Remote "
description: Blueprint
use_blueprint:
path: dustins/zha-philips-hue-v2-smart-dimmer-switch-and-remote-rwl022.yaml
input:
zha_device: 5d59bc73d754db41ca93d3d6394bbd8a
Power_Press:
- service: light.toggle
data: {}
target:
entity_id: light.entrance_lights_local
Up_Press:
- service: light.turn_on
data:
brightness_step: 25
target:
entity_id: light.entrance_lights_local
Down_HoldPress:
- service: light.turn_on
data:
brightness_step: -25
target:
entity_id: light.entrance_lights_local
Up_HoldPress:
- service: light.turn_on
data:
brightness_step: 25
target:
entity_id: light.entrance_lights_local
Down_Press:
- service: light.turn_on
data:
brightness_step: -25
target:
entity_id: light.entrance_lights_local
Power_Press2x:
- type: toggle
device_id: e2ee9ee1daf9284e286e92b2af26b22c
entity_id: light.outside_light_local
domain: light
Hue_Press: []