I have an MQTT garage door opener with working STATE and COMMAND topics (as tested from HA integrations configuration page). It does not support any sort of availability topic as far as I know, so I need leave out the availability parameters as per the doc page:
The card on my dashboard is stuck as “unavailable” though.
The garage door is closed, and is sending the “CLOSED” STATE payload as set. No errors in the log. Here is the YAML:
cover:
- platform: mqtt
name: "MQTT Garage"
command_topic: "OpenGarage/IN/STATE"
state_topic: "OpenGarage/OUT/STATE"
retain: false
payload_open: "open"
payload_close: "close"
payload_stop: "button"
state_open: "OPEN"
state_closed: "CLOSED"
value_template: '{{ value.x }}'
I am new so may be missing something obvious of course. Any suggestions to try or investigate would be appreciated. I am running HA 0.113.2.
Thanks!
1 post - 1 participant