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

trying to manage multiple key fobs in one scene


Question

Guest shapa
Posted

Don't like to create multiple scenes per key fob (as they all should make identical things)

Confused a little - is there any way to understand by what exact device (ID) the scene was triggered?

2 answers to this question

Recommended Posts

  • 0
Posted

Hi,

I'm using the following code to catch scenes from a wall switch and a key fob.

Duplicating te keyfob code with your 2nd device id should be possible.

Also don't forget to change the sceneActivation ID's at the top.

Please login or register to see this code.

regards,

Stijn

  • 0
Guest shapa
  • Inquirer
  • Posted

    Thank you, completely forgotten about fibaro:getSourceTrigger();

    Will check now

    Please login or register to see this image.

    /emoticons/default_smile.png" alt=":)" srcset="https://forum.fibaro.com/uploads/emoticons/[email protected] 2x" width="20" height="20" />

    [ Added: 2014-06-11, 13:15 ]

    Working sample

    --[[

    %% properties

    96 sceneActivation

    225 sceneActivation

    539 sceneActivation

    %% globals

    --]]

    local owner;

    local trigger = fibaro:getSourceTrigger();

    local deviceID = tonumber(trigger['deviceID']);

    local ButtonPressed = tonumber(fibaro:getValue(deviceID, "sceneActivation"));

    if (tonumber(deviceID) == 96) then owner = "Max KeyHolder"

    elseif (tonumber(deviceID) == 225) then owner = "Max Car"

    elseif (tonumber(deviceID) == 539) then owner = "Ela"

    end

    fibaro:debug(owner)

    if ( tonumber(ButtonPressed) == 1) then

    fibaro:debug("KeyFob Door Lock button pressed")

    fibaro:call(440, "pressButton", "1") -- lock Door Locks

    elseif ( tonumber(ButtonPressed) == 2) then

    fibaro:debug("KeyFob Door UnLock button pressed")

    fibaro:call(440, "pressButton", "2") -- unlock door locks

    elseif ( tonumber(ButtonPressed) == 3) then

    fibaro:debug("KeyFob button 3 pressed")

    elseif ( tonumber(ButtonPressed) == 4) then

    fibaro:debug("KeyFob button 4 pressed")

    elseif ( tonumber(ButtonPressed) == 5) then

    fibaro:call(102, "turnOff")

    fibaro:debug("KeyFob button 5 pressed / Garage Roller Door Closed")

    fibaro:sleep(3000);

    elseif ( tonumber(ButtonPressed) == 6) then

    fibaro:call(102, "turnOn")

    fibaro:debug("KeyFob button 6 pressed / Garage Roller Door Opened")

    fibaro:sleep(3000);

    elseif ( tonumber(ButtonPressed) == 7) then

    fibaro:debug("KeyFob button 7 pressed")

    elseif ( tonumber(ButtonPressed) == 8) then

    fibaro:debug("KeyFob button 8 pressed")

    else

    fibaro:debug("No response")

    end

    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...