When i add this Fibaro FGRGBWM441 to my HA i have this device as switch. And when i want change brightness i must click on device and opn window to setup brightnes.
I want add this device as dimmer in HA.
I add to group device name example:
- input_number.salon_led_dimmer_red
and in automation.yaml i configure it as:
- alias: ‘Salon LED czerwony dimmer’
trigger:
platform: state
entity_id: input_number.salon_led_dimmer_red
action:
service: light.turn_on
# Note the use of ‘data_template:’ below rather than the normal ‘data:’ if you weren’t using an input variable
data_template:
entity_id: light.fibaro_system_fgrgbwm441_rgbw_controller_level_2
brightness: “{{ trigger.to_state.state | int }}”
All is ok and in HA is show as dimmer. When from HA i change brightnes it is change and show ok in frontend HA. But when i turn on led and setup example 45 on dimmer and then change dimm by switch on phisical device Fibaro it is not change in fronted. Still show 45. How i can change it to sync button with frontend ?