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
arek205 0
Dzień dobry,
Nie znam się za bardzo na LUA, jednak spróbowałem napisać scenę, która działa ale dość szybko przekracza 10 instancji (po każdej zmianie wartości CO2 z Netatmo) i nie umiem dorobić aby odpalała się np. co godzinę.
Czy ktoś ze znawców mógłby mnie wspomóc?
W oczyszczaczu znajduje się Fibaro implant.
--[[
%% autostart
%% properties
1654 armed --czujka alarmowa
1976 power --zasilanie oczyszczacza
2018 value --netatmo
%% events
%% globals
RoletaUP --zmienna gdy roleta jest podniesiona
RoletaDOWN --zmienna gdy roleta jest opuszczona
--]]
------------------------------------------------------------------------
local startSource = fibaro:getSourceTrigger();
if (
-- sprawdzenie czy roleta jest podniesiona, netatmo jest >= 2000, zasilanie oczyszczacza jest poniżej 2W (wtedy wiem że jest wyłączony), alarm jest rozbrojony
fibaro:getGlobalValue("RoletaUP") == "1"
and fibaro:getGlobalValue("RoletaDOWN") == "0"
and tonumber(fibaro:getValue(2018, "value")) >= 2000
and tonumber(fibaro:getValue(1976, "power")) < 2
and tonumber(fibaro:getValue(1654, "armed")) == 0
or
startSource["type"] == "other"
)
then
fibaro:call(2006, "turnOn")
print("duzy smog w domu - oczyszczacz włączony")
else if (
fibaro:getGlobalValue("RoletaUP") == "1"
and fibaro:getGlobalValue("RoletaDOWN") == "0"
and tonumber(fibaro:getValue(1976, "power")) >= 2
and tonumber(fibaro:getValue(2018, "value")) < 2000
or
startSource["type"] == "other"
)
then
fibaro:call(2007, "turnOn")
print("mały smog - oczyszczacz wylaczony")
else if (
fibaro:getGlobalValue("RoletaUP") == "1"
and fibaro:getGlobalValue("RoletaDOWN") == "0"
and tonumber(fibaro:getValue(1976, "power")) < 2
and tonumber(fibaro:getValue(2018, "value")) < 2000
or
startSource["type"] == "other"
)
then
print("oczyszczacz wylaczony")
else if (
fibaro:getGlobalValue("RoletaDOWN") == "1"
and fibaro:getGlobalValue("RoletaUP") == "0"
and tonumber(fibaro:getValue(1976, "power")) >= 2
or
startSource["type"] == "other"
)
then
fibaro:call(2007, "turnOn")
print("jest noc - oczyszczacz wyłączony")
else if (
-- true
fibaro:getGlobalValue("RoletaDOWN") == "1"
and fibaro:getGlobalValue("RoletaUP") == "0"
)
then
print("jest noc - brak reakcji")
end
end
end
end
end
0 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.