Vill bara få en push notis ?

Hjälp varandra att vara kreativa för att göra hemmet mer bekvämt.
Post Reply
Kajsas
Medlem
Posts: 82
Joined: 25 Dec 2014, 11:50
9

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)
Post Reply