Tilt of Fibaro Roller Shutter 3 (FGR-223)

Hi
I have several Fibaro Roller Shutter 3 (FGR223). Close/Open/SetPosition is working. But if I run a tilt service I get the message “Action run successfully” but nothing happens. Should the tilt services work for FGR-223? Do I have to change a setting that the tilt service is working. Operating mode is set to Venetian blind.
I have installed version Home Assistant 2023.2.5.

The Fibaro Roller Shutter is reporting 2 cover entities if you configure its parameters to work wih venetian blinds.

So if you want to control the tilt of your blinds you should use the 2nd cover which should be named smtg like cover.your_cover_name_2.

If you need to have it as a tilt control you can define it in the template as a single cover entity. This is how I did it:

cover:
  - platform: template
    covers:
      cover_cuisine_rue:
        friendly_name: "Cover Cuisine Rue"
        open_cover:
          service: cover.open_cover
          data:
            entity_id: cover.volet_cuisine_cote_rue
        close_cover:
          service: cover.close_cover
          data:
            entity_id: cover.volet_cuisine_cote_rue
        stop_cover:
          service: cover.stop_cover
          data:
            entity_id: cover.volet_cuisine_cote_rue
        set_cover_position:
          service: cover.set_cover_position
          data:
            entity_id: cover.volet_cuisine_cote_rue
            position: "{{position}}"
        set_cover_tilt_position:
          service: cover.set_cover_position
          data:
            entity_id: cover.volet_cuisine_cote_rue_2
            position: "{{tilt}}"
        value_template: "{{is_state('sensor.cover_cuisine_rue', 'open')}}"
        icon_template: >-
          {% if is_state('sensor.cover_cuisine_rue', 'open') %}
            mdi:window-open
          {% else %}
            mdi:window-closed
          {% endif %}