Hello,
I have a problem, when I press UP or DOWN for my cover and then I press stop, if the last action was going down, I can not press down again, just only UP.
Any solution?
Thanks
Hello,
I have a problem, when I press UP or DOWN for my cover and then I press stop, if the last action was going down, I can not press down again, just only UP.
Any solution?
Thanks
I think you should put the optimistic mode off.
It is off, this is my config of my cover:
cover:
- platform: mqtt
name: “MQTT Cover”
command_topic: “salon/persiana”
state_topic: “salon/persiana”
availability_topic: “salon/persiana”
payload_open: “open”
payload_close: “close”
payload_stop: “stop”
state_open: “open”
state_closed: “close”
qos: 0
retain: true
payload_available: “online”
payload_not_available: “offline”
optimistic: false
It looks like your blind is sending the state_open/close message before the blind is finished open/closing.
Well, my blind is controlled by mqtt, if HA receives the state command at the same time is published, he should assume that the blind has instantly been closed/opened. I mean HA does not have any other method to check the blind apart from the status mqtt command, the problem is that even after receiving the status command is bugged. Even if I send the status command again after manually
What happens if you change optimistic to true and comment out the state_open/closed lines?