Configure multiple covers

I’m a new in Home Assistant,
My goal is to control over the blinds in the living room.
The device i use is Sonoff 4ch Pro with Stefanbode’s firmware.
I’m able two separate blinds from the device’s UI, an i’m trying to implement the same in the Home Assistant.
So i defined two covers, as follow:

cover:

  • platform: mqtt
    name: “Saloon 1”
    unique_id: “saloon_1”
    availability_topic: “tele/sonoffDEV1/LWT”
    payload_available: “Online”
    payload_not_available: “Offline”
    position_topic: stat/sonoff/SHUTTER1
    position_open: 100
    position_closed: 0
    set_position_topic: “cmnd/sonoff/shutterposition1”
    command_topic: “cmnd/sonoff/backlog”
    payload_open: “SHUTTEROPEN”
    payload_close: “SHUTTERCLOSE”
    payload_stop: “SHUTTERSTOP”
    retain: false
    optimistic: false
    qos: 1

  • platform: mqtt
    name: “Saloon 2”
    unique_id: “saloon_2”
    availability_topic: “tele/sonoff/LWT”
    payload_available: “Online”
    payload_not_available: “Offline”
    position_topic: stat/sonoff/SHUTTER2
    position_open: 100
    position_closed: 0
    set_position_topic: “cmnd/sonoff/shutterposition2”
    command_topic: “cmnd/sonoff/backlog”
    payload_open: “SHUTTEROPEN”
    payload_close: “SHUTTERCLOSE”
    payload_stop: “SHUTTERSTOP”
    retain: false
    optimistic: false
    qos: 1

I see in the UI the two blinds controls with Up, Down and Stop buttons, but both control same cover.
What am i doing wrong ?

You have the same command topic for both covers.

Each topic has to be unique to the device.