Hej
Vad behöver jag göra för att bara få en notis till mobilen ? Nu får jag typ hela tiden =/
--[[
%% autostart
%% properties
16 value
%% globals
--]]
setTimeout(function()
local delayedCheck0 = false;
local tempDeviceState0, deviceLastModification0 = fibaro:get(16, "value");
if (( tonumber(fibaro:getValue(16, "value")) < 24 ) and (os.time() - deviceLastModification0) >= 100) then
delayedCheck0 = true;
end
local startSource = fibaro:getSourceTrigger();
if (
( delayedCheck0 == true )
or
startSource["type"] == "other"
)
then
setTimeout(function()
fibaro:call(36, "sendDefinedPushNotification", "8");
end, 100000)
end
end, 100000)