-
Notifications
You must be signed in to change notification settings - Fork 0
/
216. Lowering temp at night
54 lines (47 loc) · 1.4 KB
/
216. Lowering temp at night
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
--[[
%% properties
%% events
%% globals
NattogDag
--]]
local startSource = fibaro:getSourceTrigger();
if (
( fibaro:getGlobalValue("NattogDag") == "Natt" )
or
startSource["type"] == "other"
)
then
fibaro:sleep(1800000)
-- Setter Nobø 2, Maris rom
if fibaro:getGlobal("RomMari") == "Kaldt"
or fibaro:getGlobalValue("Ferie") == "Ja"
then
fibaro:call(606, "pressButton", "3"); -- Sparing
else
fibaro:call(606, "pressButton", "2"); -- Syklus
end
-- Setter Nobø 3, Fannys rom
if fibaro:getGlobal("RomFanny") == "Kaldt"
or fibaro:getGlobalValue("Ferie") == "Ja"
then
fibaro:call(607, "pressButton", "3"); -- Sparing
else
fibaro:call(607, "pressButton", "2"); -- Syklus
end
-- Setter varme Katrines rom
if fibaro:getGlobal("RomKatrine") == "Kaldt"
or fibaro:getGlobalValue("Ferie") == "Ja"
then
fibaro:call(627, "pressButton", "2"); -- Sparing
else
fibaro:call(627, "pressButton", "4"); -- Syklus
end
-- Setter varme Kontor
if fibaro:getGlobal("RomKontor") == "Kaldt"
or fibaro:getGlobalValue("Ferie") == "Ja"
then
fibaro:call(626, "pressButton", "2"); -- Sparing
else
fibaro:call(626, "pressButton", "4"); -- Syklus
end
end