Hi everyone… I’m new with Home assistant so maybe I’m missing something obviouse but currantly I’m not sure how to even look for the solution.
Currently this is my setup: I’m running Hass.io on rPi3 and have multipla mqtt switches. Also, using AppDaemon for automation part.
Problem is that when script changes state of the switch UI registers change and light is toggled to “on” or “off” but no action is performed. When I manually click on that same light everything works ok. Same thing happens with group of lights I created… Main switch for whole group switches and state shows that this group is “on” but every entity (light) in that group is still “off”… manually, every thing works ok.
This is how every switch is defined in configuration file:
- platform: mqtt
name: “livingroom_switch1”
command_topic: “Lights/Livingroom_Switch1/gpio/12”
payload_on: “1”
payload_off: “0”
Thanks in advance.