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
Mariusz_Porada 0
Witam,
potrzebuje pomocy zrozumieniu problemu. Mianowicie, w kodzie poniżej znajdują się dwa warunki:
1. ( tonumber(fibaro:getGlobalValue("Osw_zew_drzewa")) == tonumber("1") )
2. ( tonumber(fibaro:getGlobalValue("Osw_zew_taras")) == tonumber("1") )
Dlaczego drugi warunek jest "akceptowany" tylko wtedy, kiedy pierwszy jest także wykonany. Czyli muszę zmienić wartość Osw_zew_drzewa na 1, aby drugi warunek mógł być sprawdzony.
Potrzebuje aby każdy warunek był realizowany niezależnie.
Z góry dziękuję.
Cała scena:
local startSource = fibaro:getSourceTrigger();
if (
( tonumber(fibaro:getValue(753, "value")) > 0 ) --czujnik zmierzchu
or
startSource["type"] == "other"
)
then --night
if (
( tonumber(fibaro:getGlobalValue("Osw_zew_drzewa")) == tonumber("1") )
)
then
fibaro:call(972, "turnOn");
else
fibaro:call(972, "turnOff");
end
if (
( tonumber(fibaro:getGlobalValue("Osw_zew_taras")) == tonumber("1") )
)
then
fibaro:call(973, "turnOn");
else
fibaro:call(973, "turnOff");
end
else --day
fibaro:call(972, "turnOff");
fibaro:debug("Taras OFF")
fibaro:call(973, "turnOff");
fibaro:debug("Taras OFF")
end
5 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.