Hi All,
I have a MQTT Light Dimmer switch to control dimmable spotlights.
That works fine as long as I control the light with Home Assistant. But when I change status or brightness with an mqtt message from another source then Home Assistant, the Home Assistant switch does not update. Thought it would do that automatically based on the states topic.
Configuration:
- platform: mqtt
name: "Kitchen Spotlight2"
state_topic: "stat/RFXCom/Kitchen_Spotlight2/POWER"
command_topic: "cmnd/RFXCom/Kitchen_Spotlight2/POWER"
brightness_state_topic: "stat/RFXCom/Kitchen_Spotlight2/brightness"
brightness_command_topic: "cmnd/RFXCom/Kitchen_Spotlight2/brightness/set"
qos: 0
payload_on: "On"
payload_off: "Off"
optimistic: true
retain: true
Any ideas, how to get the Home Assistant dimmer switch updated, or something wrong with the setup?
Thx,
PPee