Contact us for all your questions
Fibaro:isSceneEnabled command
There are no products matching the selection.
fibaro:isSceneEnabled()
Action :
Usage and parameters :
fibaro:isSceneEnabled(SceneID)
- SceneID : the number of the scene that needs to be checked.
Returned value :
Boolean value: true when scene is active, false if not active.
Programming example LUA code :
-- if scene 5 is active then start scene 9
if ( fibaro:isSceneEnabled(5) ) then
fibaro:setSceneEnabled(9, 'true')
end