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

In a specific timerange then triggerd by motion


Question

Posted

Hi

Every morning i forget to disarm my permitter (night) alarm. Now I would like to create a scen that does it for me :=)

 

Senario:
in the morning between 6-7am monday to friday then motion is detected in the bathroom then disarm

 

So I need some help with he lua cod for the timerange

 

====================================================

--[[
%% properties
9 value
%% globals
--]]

if (
  ( tonumber(fibaro:getValue(9, "value")) > 0 ) -- Motion detected

and

 THIS ===>  ( (os.day= monday to friday) and (os.time = 06:00 to 07:00) );

)
 

then
 fibaro:call(61, "turnOn"); -- example code for disable permiter...

End

======================================================

 

THX in advance

4 answers to this question

Recommended Posts

  • 0
  • Inquirer
  • Posted

    Anyone? 

    • 0
    Posted

    +1. Would be useful for me too!

    • 0
    Guest cuprum
    Posted

    According to

    Please login or register to see this link.

    something like that may help You

     

    local da=os.date("*t");
    if ( ( da.hour > 6 ) and (da.hour < 7 ) and ( da.wday > 1) and (da.wday < 7 ) ) then
     
    end;

     

    NB! The "wday" starts with Sunday.

    • 0
  • Inquirer
  • Posted

    Thx I will try this

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