Welcome to Smart Home Forum by FIBARO
Dear Guest,
as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.
As a member you can:
- Start new topics and reply to others
- Follow topics and users to get email updates
- Get your own profile page and make new friends
- Send personal messages
- ... and learn a lot about our system!
Regards,
Smart Home Forum by FIBARO Team

Question
Torbjorn 6
Hello,
I have a scene that checks a variable ( 0 / 1 ) at 6:30 pm each weekday. If variable (VattnaEj) = 0 scene should turn on device, if variable = 1 should do nothing.
My problem is that the device is turned on any and every time when the variable changes from 1 -> 0. I want this to happen only at 6:30pm AND if variable is 1.
Any help ??
LUA:
--[[
%% autostart
%% properties
%% weather
%% events
%% globals
VattnaEj
--]]
local sourceTrigger = fibaro:getSourceTrigger();
function tempFunc()
local currentDate = os.date("*t");
local startSource = fibaro:getSourceTrigger();
if (
( ((currentDate.wday == 1 or currentDate.wday == 2 or currentDate.wday == 3 or currentDate.wday == 4 or currentDate.wday == 5 or currentDate.wday == 6 or currentDate.wday == 7) and string.format("%02d", currentDate.hour) .. ":" .. string.format("%02d", currentDate.min) == "18:30") and tonumber(fibaro:getGlobalValue("VattnaEj")) == tonumber("0") )
)
then
fibaro:call(51, "turnOn");
fibaro:call(242, "sendDefinedPushNotification", "20");
end
setTimeout(tempFunc, 60*1000)
end
if (sourceTrigger["type"] == "autostart") then
tempFunc()
else
local currentDate = os.date("*t");
local startSource = fibaro:getSourceTrigger();
if (
( (currentDate.wday == 1 or currentDate.wday == 2 or currentDate.wday == 3 or currentDate.wday == 4 or currentDate.wday == 5 or currentDate.wday == 6 or currentDate.wday == 7) and tonumber(fibaro:getGlobalValue("VattnaEj")) == tonumber("0") )
or
startSource["type"] == "other"
)
then
fibaro:call(51, "turnOn");
fibaro:call(242, "sendDefinedPushNotification", "20");
end
end
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.