Jump to content

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


  • 0

How to known if scenary is active ?


Question

Posted

Hi

I would like to known how can i see the statut of scenary ?

Only what i can do is run/stop the scenary, not see if my scenary is active ?

Thanks for yours answers.

4 answers to this question

Recommended Posts

  • 0
Posted

What do your scenarie do ?

If it turns on lights you Can check it in the energy meter ?

  • 0
  • Inquirer
  • Posted

    Hi

    Something more easy like have led on the panel to indicate the status ?

    • 0
    Posted

    Hi

    You can Count how many instances of a scene that is running.

    I have used this LUA to check in debug window but you can create a variable that sets when scene is Active and do whatever you want with this variable.

    --[[

    %% properties

    %% globals

    --]]

    -- Displays number of running scenes with id = 29

    local id = 29

    local num = (fibaro:countScenes(id))

    fibaro:debug ("Number of instances of the scene id = " .. id .. ": " .. num);

    --That the scene with id = 29 is running

    if (fibaro:countScenes (id) >= 1) then

    fibaro:debug ( "The scene is running" );

    else

    fibaro:debug ( "Scene is not running" );

    end

    • 0
  • Inquirer
  • Posted

    Hi

    The best way is that the devellopers include this function to new release ?

    Please login or register to see this image.

    /emoticons/default_icon_wink.gif" alt=";-)" />

    Join the conversation

    You can post now and register later. If you have an account, sign in now to post with your account.

    Guest
    Answer this question...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

    ×
    ×
    • Create New...