Hi,
I have an RF bridge with Tasmota and a shutter. The RF side is ok, but the visualty is not working on the card. When I press open or close button, the āiconā not react.
This is my cover:
cover:
- platform: mqtt
name: "shutter1"
command_topic: "cmnd/RFbridge/backlog"
qos: 1
payload_open: "RfRaw AAB0xxxxxxxx; RfRaw 0"
payload_close: "RfRaw AAB0xxxxxxxx; RfRaw 0"
payload_stop: "RfRaw AAB0xxxxxxxxx; RfRaw 0"
optimistic: true
And the card:
type: 'custom:shutter-card'
entities:
- entity: cover.shutter1
name: Shutter1
State on card is everytime: undefined%
I want when I press the close button, the shutter on the card would be closed and the status would be closed. And vice versa. Is this possible?
The interesting thing is that the status of the shutter is always displayed correctly in HomeKit.
Do you have any ideas?
Thanks!