Contact us for all your questions
Fibaro:abort commando
fibaro:abort()
Action :
Stops executint the current script.
Usage and parameter :
There are no parameters.
Return Value:
No return value.
Example:
Local a = 0
-- endless loop
while true do
-- if value of a >10 stop sctipt
if (a>10)
fibaro:abort()
end
a=a+1
-- wait 1 seconde
fibaro:sleep(1000)
end