new product from FIBARO: Fibaro Roller Shutter 2

I found the Fibaro roller shutter device under Add Devices - Other - Roller Shutter

So I excluded the module and re-included it this way, but it makes no difference ToggleState still does not work. :-[

Hi,
I have problems to do the calibration of the Fibaro Roller Shuter2.
I have it connected to a servomotor with end-limit switch.
The calibration process started normally, but it stops at the first end (up or down) and doesn’t make the opposite direction.
Please, give me some advice.

Thanks forward!

Years later this issue was never fixed by Vera.

However you can use this LUA code in a scene instead of using the devices ToggleState.

Change the device number 75 to that of your Fibaro Roller Shutter 2 module.

local device=75
local switchOnOff = luup.variable_get("urn:upnp-org:serviceId:SwitchPower1", "Status", device)
    if (switchOnOff == "1") then
      -- Switch is on
luup.call_action("urn:upnp-org:serviceId:Dimming1", "SetLoadLevelTarget", {newLoadlevelTarget = "0"}, device)
else 
luup.call_action("urn:upnp-org:serviceId:Dimming1", "SetLoadLevelTarget", {newLoadlevelTarget = "100"}, device)
end