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


Question

Posted

Please,

I am using this scene kindly suggested by jgab @,  which does the following:
1. the motion sensor detected movement (violated)
2. the light (Dimmer) turns on at 100%.
3. after (3 minutes) it turns off.
4. if during this period a new violation occurs, the clock will be reset.

 

Help I need:
1. after the set time (3 minutes) the Dimmer reduces to 30%.
2. after 5 min. it goes out.
3. but if there is a new movement it goes back to the beginning of the Scene, that is, to 100% and starts all over again.

if anyone can help, it would be very important to me.
Thank you very much.

 

Original scene

 

local light=23                 -- ID light (Dimmer)
local motion=26            -- ID motion sensor
local maxTime = 1*180   -- time max motion safet
local sleepTime = 5 
 
function loopUntil(fun,cont,secs)
local function loop()
if not fun() then 
fibaro.setTimeout(1000*secs,loop) 
else 
if cont then cont()
end 
end
end
  fibaro.setTimeout(1000*secs,loop)
end
 
fibaro.call(light, 'setValue'99)   --fibaro.call (light,"turnOn") 
fibaro.debug("Luzes Dimmer On")    
 
local safeTime = 0
 
loopUntil(
 
 function()                                     -- Loop function
  if safeTime >= maxTime then return true end                
  safeTime=safeTime+sleepTime                   -- Timer SEGURO
  fibaro.debug("Contando Tempo Seguro",safeTime,maxTime) 
  if fibaro.getValue(motion,'value'then --> '0' then -- motion violado
     safeTime=0       -- reset safeTime
     fibaro.debug("Reset", safeTime)
  end
 end,
  
 function()  -- Things to do after the loop ends
 fibaro.call(light,"turnOff")    
fibaro.debug ("Luzes Dimmer Off")    
 end,
 sleepTime

3 answers to this question

Recommended Posts

  • 0
Posted

This could work

Please login or register to see this code.

 

  • 0
  • Inquirer
  • Posted
    17 hours ago, jgab said:

    This could work

    Please login or register to see this code.

     

    jgab@,

    again helped me a lot, thanks for your attention and your time ..... working perfectly .... thanks

    • 0
  • Inquirer
  • Posted

    jgab @,
    if i use this scene on an HC2 control panel, you could inform me of the necessary adjustments to work, thanks.

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