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


  • 0

Activate scene between Sunset & Sunrise!


Guest Lars V

Question

Guest Lars V
367 / 5000
 

i'm trying to make a Block scene on my HC3, which should be active in the time from sunset to Sunrise.
My devices consist of NEXA SP816-1 And a Fibara DUAL SW.
The scene will work if I set it to a fixed time between e.g. 21:00> 05:00, but I think it must
be possible to use Sunset / Rice.

 

Best Regards / Lars

Please login or register to see this attachment.

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

At sunset and at sunrise is an exact moment, not a period. If you want your scene to work during a period, you can, for example, use a global variable like in this post:

 

 

 

Link to comment
Share on other sites

  • 0

Hi,

Select block sunset/sunrise

Please login or register to see this attachment.

 

Link to comment
Share on other sites

  • 0
Guest Lars V
  • Inquirer
  • It is as SmartHomeEddy wrote I  wants to turn on a light based on a PIR between sunset and sunrise..

    Link to comment
    Share on other sites

    • 0

    If you want to use a block scene, see the solution in the post I linked to. With the block scene the light will go off, even if there is movement. If you want to let the light on as long as there is movement, you have to use a other solution. 

    Link to comment
    Share on other sites

    • 0
    Guest Lars V
  • Inquirer
  • I thing i have solved it using LUA.
    I Converted the Block scene to LUA and changed the operator "==" for Sunset/rise in the cod bellow So now im just waiting for the sun to go down ;)

    {
      conditions = { {
          id = 229,
          isTrigger = true,
          operator = "==",
          property = "value",
          type = "device",
          value = true
        }, {
          isTrigger = true,
          operator = ">=",
          property = "sunset",
          type = "date",
          value = 0
        }, {
          isTrigger = true,
          operator = "<=",
          property = "sunrise",
          type = "date",
          value = 0
        } },
      operator = "all"
    }
     
     
    Link to comment
    Share on other sites

    • 0
    On 5/5/2021 at 4:00 PM, Guest Lars V said:

    I thing i have solved it using LUA.
    I Converted the Block scene to LUA and changed the operator "==" for Sunset/rise in the cod bellow So now im just waiting for the sun to go down ;)

    {
      conditions = { {
          id = 229,
          isTrigger = true,
          operator = "==",
          property = "value",
          type = "device",
          value = true
        }, {
          isTrigger = true,
          operator = ">=",
          property = "sunset",
          type = "date",
          value = 0
        }, {
          isTrigger = true,
          operator = "<=",
          property = "sunrise",
          type = "date",
          value = 0
        } },
      operator = "all"
    }
     
     

    if I want to run scene 60 mins BEFORE sunset and 60 mins AFTER sunrise, then how it should look like?

    Edited by Tazovsky
    Link to comment
    Share on other sites

    Join the conversation

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

    Guest
    Answer this question...

    ×   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...