Apax 0 Share Posted February 16, 2015 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 ==================================================== --[[%% properties9 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 Quote Link to post Share on other sites
0 Cafun 13 Share Posted February 19, 2015 +1. Would be useful for me too! Quote Link to post Share on other sites
0 cuprum 33 Share Posted February 19, 2015 According to http://www.lua.org/manual/5.2/manual.html#pdf-os.date 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. Quote Link to post Share on other sites
0 Apax 0 Author Share Posted February 19, 2015 Thx I will try this Quote Link to post Share on other sites
Question
Apax 0
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
Link to post
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.