Double Press UP on shutter should open multiple shutters (openhab3)

  • I am trying to react to a double or long press on a roller mode shelly 25 in openhab3.

    There are 5 shellys2.5, each controlling one shutter. Each shelly is attached to a double push button (one for up, another one for down).

    I would like to change their behavior such that double or long pressing any of their up/down buttons opens/closes all shutters.

    Reacting to a shelly25 in relay mode works fine in openhab.

    rule "DOUBLE_PRESSED relay Rule works"
    when
        Channel "shelly:shelly25-relay:XXXXXXXXX:relay1#button" triggered DOUBLE_PRESSED

    then
            Rollo_1.sendCommand(UP)
    end



    But roller does not have a button and reacting on roller#input1 does not do anything.

    rule "DOUBLE_PRESSED roller Rule does not work"
    when
        Channel "shelly:shelly25-roller:XXXXXXXXX:roller#input1" triggered DOUBLE_PRESSED

    then

            Rollo_1.sendCommand(UP)

    end

    Is there a solution?

    Is this a limitation of shelly25?

    Is this a limitation of the shelly binding in openhab3?

    Would switching to mqtt help?

    Would switching to tasmota help?