-
Notifications
You must be signed in to change notification settings - Fork 0
/
167. Set variable Nullstill (trigger reset)
78 lines (71 loc) · 2.22 KB
/
167. Set variable Nullstill (trigger reset)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
--[[
%% autostart
%% properties
%% events
%% globals
RunClock
--]]
local startSource = fibaro:getSourceTrigger();
if (
( fibaro:getGlobalValue("RunClock") == "Ja" )
or
startSource["type"] == "other"
)
then
local BeforeOn = 0
local debug = 0
if fibaro:countScenes() > 1 then fibaro:abort() end
while fibaro:getGlobalValue("RunClock") == "Ja" do
if debug == 1 then fibaro:debug("Sjekker") end
-- local on_time = (fibaro:getValue(1,'sunsetHour'));
-- local off_time = (fibaro:getValue(1,'sunriseHour'));
local on_time = "05:00";
local off_time = "05:30";
local variable = "Nullstill";
local verdi_on = "Ja";
local verdi_off = "Nei";
local adjust_time = os.date("%H:%M", os.time()+60*BeforeOn)
if debug == 1 then fibaro:debug("adjust_time " .. adjust_time) end
if on_time > off_time
then
if os.date("%H:%M", os.time()) > adjust_time then adjust_time = on_time
if debug == 1 then fibaro:debug("adjust_time II " .. adjust_time) end
end
if
(adjust_time >= on_time
or os.date("%H:%M", os.time()) < off_time)
then
if (fibaro:getGlobalValue(variable) ~= verdi_on)
then
fibaro:setGlobal(variable, verdi_on)
if debug == 1 then fibaro:debug(variable .. " satt til " .. fibaro:getGlobal(variable)) end
end
else
if (fibaro:getGlobalValue(variable) ~= verdi_off)
then
fibaro:setGlobal(variable, verdi_off)
if debug ==1 then fibaro:debug(variable .. " satt til " .. fibaro:getGlobal(variable)) end
end
end
else
if adjust_time >= on_time
and (os.date("%H:%M", os.time()) < off_time)
then
if (fibaro:getGlobalValue(variable) ~= verdi_on)
then
fibaro:setGlobal(variable, verdi_on)
if debug == 1 then fibaro:debug(variable .. " satt til " .. fibaro:getGlobal(variable)) end
end
else
if (fibaro:getGlobalValue(variable) ~= verdi_off)
then
fibaro:setGlobal(variable, verdi_off)
if debug ==1 then fibaro:debug(variable .. " satt til " .. fibaro:getGlobal(variable)) end
end
end
end
if fibaro:countScenes() > 1 then fibaro:abort() end
-- running once a minute is enough
fibaro:sleep(60000)
end
end