Code: Select all
startSource["type"] == "other"
Code: Select all
--[[
%% autostart
%% properties
%% globals
TOD
Dagsljus
--]]
local startSource = fibaro:getSourceTrigger();
if (
( fibaro:getGlobalValue("TOD") == "Natt" and fibaro:getGlobalValue("Dagsljus") == "Mörkt" )
or
startSource["type"] == "other"
)
then
fibaro:call(48, "turnOn");
fibaro:call(42, "turnOn");
fibaro:call(45, "turnOn");
fibaro:call(36, "turnOn");
fibaro:call(30, "turnOn");
fibaro:call(33, "turnOn");
end
Code: Select all
or startSource["type"] == "other"
Code: Select all
--[[
%% autostart
%% properties
%% globals
TOD
Dagsljus
--]]
if ( fibaro:getGlobalValue("TOD") ~= "Natt" and fibaro:getGlobalValue("Dagsljus") == "Mörkt" )
then
fibaro:call(48, "turnOn");
fibaro:call(42, "turnOn");
fibaro:call(45, "turnOn");
fibaro:call(36, "turnOn");
fibaro:call(30, "turnOn");
fibaro:call(33, "turnOn");
end