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
MattyO 4
Could anyone please help me withe the code I need to loop lua code for a set amount of time. I am trying to make a scene that will flash lights for an x amount of time.
I just want to be able to run this as a scene when a panic button i pressed. But a stand alone scene that I can add would be awesome.
I have been trying to hack stuff together from the web and have failed badly. I am very new to Lua
lightID = 70
delay = 5000 --in ms
a = 10
repeat
print("value of a:", a)
a = a + 1
until( a > 30 )
local startSource = fibaro:getSourceTrigger();
if (
( tonumber(fibaro:getGlobalValue("Null")) == tonumber("0") )
or
startSource["type"] == "other"
)
then
fibaro:call(lightID, "turnOn");
fibaro:sleep(delay)
fibaro:call(lightID, "turnOff");
fibaro:sleep(delay)
end
Thanks so much Matt
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.