Fibaro Roller Shutter 3 (FGR-223) Lamellas Position "Venetian Blind Tilt Position" is not working

Hey there,

I use 13 Fibaro Roller Shutter (FGR-222) since 2016 to control my vetetian blinds with my old smart home controller.

Today I switched them to HA and then realized, that it is quite difficult to control the tilt option… :frowning:

After some tests I managed to find a solution for my problem.

These are my configuration steps:

  1. Change report type to “Fibaro Command”
  2. Mode: Venetian blind
  3. (Turning time, if necessary)
  4. Start calibration

In automation I use the following (example: group of blinds, position closed, 20 % tilt → my position is twisted)

alias: Jalousien - Süd 100/20
description: ''
trigger:
  - platform: mqtt
    topic: FT55/EZ/Jalousien
    payload: '01'
  - platform: mqtt
    topic: FT55/WZ/Jalousien
    payload: '01'
condition: []
action:
  - service: cover.set_cover_position
    data:
      position: 0
    target:
      entity_id:
        - cover.wohnzimmer_ost
        - cover.wohnzimmer_sud_links
        - cover.wohnzimmer_sud_rechts
        - cover.diele_sud_rechts
        - cover.esszimmer_sud
  - service: zwave_js.set_value
    data:
      command_class: '145'
      endpoint: '0'
      property: fibaro
      value: 80
      property_key: venetianBlindsTilt
    target:
      entity_id:
        - cover.esszimmer_sud
        - cover.wohnzimmer_ost
        - cover.wohnzimmer_sud_links
        - cover.wohnzimmer_sud_rechts
        - cover.diele_sud_rechts
mode: single
1 Like