Is it possible to use a Philips hue zigbee dimmer to dim a Shelly dimmer?
Alex, I’m not quite sure I follow, but maybe this will answer your question: If the Hue dimmer shows the dimming value in HA, then you can write an automation that will set the Shelly dimmer to the same value. So in that sense, yes, it is possible to control it. I hope that is helpful.
-David
Thank you David, yes that’s what I figured out and did the automation including the bedside table lamp connected to a smart switch.
It is great.
alias: Master bedroom dim light up one step
description: “”
trigger:
- device_id: 3648a04be2a7a1dab91507de5338c12c
domain: zha
platform: device
type: remote_button_short_press
subtype: dim_up
id: Dim-up - device_id: 3648a04be2a7a1dab91507de5338c12c
domain: zha
platform: device
type: remote_button_short_press
subtype: dim_down
id: Dim-down - device_id: 3648a04be2a7a1dab91507de5338c12c
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_on
id: Toggle-main-light - device_id: 3648a04be2a7a1dab91507de5338c12c
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_off
id: Toggle-bedside-lamp
condition: []
action: - choose:
- conditions:
- condition: trigger
id: Dim-up
sequence: - device_id: f8c9aead04fa7a182bb74f856395ff2e
domain: light
entity_id: light.master_bedroom_main_light_shelly
type: brightness_increase
- condition: trigger
- conditions:
- condition: trigger
id: Dim-down
sequence: - device_id: f8c9aead04fa7a182bb74f856395ff2e
domain: light
entity_id: light.master_bedroom_main_light_shelly
type: brightness_decrease
- condition: trigger
- conditions:
- condition: trigger
id: Toggle-main-light
sequence: - type: toggle
device_id: f8c9aead04fa7a182bb74f856395ff2e
entity_id: light.master_bedroom_main_light_shelly
domain: light
- condition: trigger
- conditions:
- condition: trigger
id: Toggle-bedside-lamp
sequence: - type: toggle
device_id: cff7d9e0ac7afb5ede1bd334bd36e791
entity_id: switch.bed_side_lamp_switch
domain: switch
mode: single
- condition: trigger
- conditions: