Hi,
I need some help with my mqtt cover setup for my venetian blind.
I have shelly 2.5 with custom Tasmota (because of if else function). I have configured two shutters, one for opening and closing, the second one for tilting. I use simple rule, that setcloseposition for tilting, when main shutter closing (running down). The next rule setopenposition for tilting when main shutter opening (running up). The main problem is when i use button to open shutter, tilting does not update in home assistant, but it works in tasmota.
I have tried mqtt discovery which added automatically tasmotized shelly to HA, but when tils resets by tasmota, slider does not update.
I have tried also mqtt template for cover and is has the same problem.
cover:
- platform: mqtt
name: "Zaluzie loznice naklapeni"
device_class: "shutter"
command_topic: "cmnd/shelly25/Backlog"
availability_topic: "tele/shelly25/LWT"
qos: 0
retain: true
payload_open: "ShutterOpen2"
payload_close: "ShutterClose2"
payload_stop: "ShutterStop2"
state_open: "ON"
state_closed: "OFF"
payload_available: "Online"
payload_not_available: "Offline"
position_topic: "stat/shelly25/SHUTTER2"
value_template: "{{ value | int }}"
position_open: 100
position_closed: 0
set_position_topic: "cmnd/shelly25/ShutterPosition2"
- platform: mqtt
name: "Zaluzie loznice"
device_class: "shutter"
command_topic: "cmnd/shelly25/Backlog"
availability_topic: "tele/shelly25/LWT"
qos: 0
retain: true
payload_open: "ShutterOpen1"
payload_close: "ShutterClose1"
payload_stop: "ShutterStop1"
state_open: "ON"
state_closed: "OFF"
payload_available: "Online"
payload_not_available: "Offline"
position_topic: "stat/shelly25/SHUTTER1"
value_template: "{{ value | int }}"
position_open: 100
position_closed: 0
set_position_topic: "cmnd/shelly25/ShutterPosition1"
Can someone help me to update slider of my tilting cover?