Jump to content

Welcome to Smart Home Forum by FIBARO

Dear Guest,

 

as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.

 

As a member you can:

  •     Start new topics and reply to others
  •     Follow topics and users to get email updates
  •     Get your own profile page and make new friends
  •     Send personal messages
  •     ... and learn a lot about our system!

 

Regards,

Smart Home Forum by FIBARO Team


Recommended Posts

Posted

Hi,

 

I would like to prevent the blinds from closing when the window is open.

I tried to write QA, but the native blinds device app for roller shutter 4 just works better.

 

I consider using API to modify blinds device settings when the window is open.

 

Have any of you had simliar case and can share the solutiones you came up with?

Thanks in advance for the replies.

Posted

I dont understand you. If you have any device, sensor, that detects the window's state, just create a simple scene, or write a LUA code, that will take the state of windows as condition for opening blinds..

This doesnt need any manipulation with settings..

I guess you have some automated processes for blinds, like morning, or evening or according to some weather etc..

Just include another condition into trigger part..

  • Topic Author
  • Posted

    Imagine someone presses close button and the blind hits the window frame.

    That's why I want to built-in this condition in the shutter controls in yubii app.

    • 7 months later...
    Posted (edited)

    Fibaro Automation Insights from

    Please login or register to see this link.


    *(Solutions from 150+ HC3 Shutter Integrations)*

    Reliable Window/Blind Interlocking
      For fail-safe operation in your LUA code:

     

    -- Full retraction when windows open
    if (fibaro.getValue(windowID, "value")) and (tonumber(fibaro.getValue(blindID, "value")) < 95 then  
       fibaro.call(blindID, "setValue", 100) -- 100% open
       fibaro.debug("USSB_System", "Blinds retracted: Window ajar") 
    end

     

    Why US Shutters & Blinds’ Systems Excel:

           Storm Mode – Auto-retracts at >35km/h winds (Fibaro-compatible)

           Battery Sipping – Our composite blades need 30% less motor torque

           Pre-Wired Channels – Dedicated conduit for contact sensors

    Pro Tip: Add :debounce(10) to window sensors to prevent draft false triggers.

    Edited by James Robert
    Posted

    Old thread I know, but in case it is useful, what I do: 

    When closing the blind is initiated, i check whether the window is open, and if so I close it as well. This is achieved using a button on a Remotec scene controller device, that starts a block scene.

    Posted
    On 5/3/2025 at 4:34 AM, Tim__ said:

    Old thread I know, but in case it is useful, what I do: 

    When closing the blind is initiated, i check whether the window is open, and if so I close it as well. This is achieved using a button on a Remotec scene controller device, that starts a block scene.

    Your automation setup is smart—closing the window automatically when triggering the blind via a scene controller prevents drafts or security risks. Using Block Scene logic ensures seamless execution. Just verify sensor reliability (e.g., window contact sensors) to avoid false triggers. Integrations like this boost home efficiency

    • Thanks 1

    Join the conversation

    You can post now and register later. If you have an account, sign in now to post with your account.

    Guest
    Reply to this topic...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

    ×
    ×
    • Create New...