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


  • 1

Fibaro - Please add support for Remotec ZRC90 (template attached)


AutoFrank

Question

Hi Fibaro,

 

Please add support for this device as a matter of urgency please.

it's a 8 button scene controller/master that I suspect is likely to get very popular considering its form factor and price.

 

Please login or register to see this link.

 

I included it with my HC2 but have no control over the scenes it activates

 

I download the template from the HC2 after I added it and have attached it here

Please login or register to see this link.

 

on the box is it also referred to as BW8510EU

 

Thanks in advance 

-Frank

Link to comment
Share on other sites

Recommended Posts

  • 0
  • Inquirer
  • device ID dump is 

    Please login or register to see this code.

    I'm still not sure what you mean by the thrid ask....

     

    Third menu is the devices menu (correct?)

    this is what I see - not sure about triggers 

     

    Please login or register to see this image.

    /public/style_images/master/attachicon.gif" alt="attachicon.gif" />

    Please login or register to see this link.

    Please login or register to see this image.

    /public/style_images/master/attachicon.gif" alt="attachicon.gif" />

    Please login or register to see this link.

    Please login or register to see this image.

    /public/style_images/master/attachicon.gif" alt="attachicon.gif" />

    Please login or register to see this link.

     

    okay - I got it to work

     

    This is the scene code I used

    Please login or register to see this code.

    Link to comment
    Share on other sites

    • 0

    Device got in manual mark z-wave plus. and require Association command, AGI, Central Scene, both HC support it so they should work w/o our help

     

    First please check

    - in group 1 of association is setting to HC (device id 1)

    - is device is configured on true

    - in lua please check is device send any action central scene (key pressed)

    Link to comment
    Share on other sites

    • 0
  • Inquirer
  • Please login or register to see this attachment.

    Device got in manual mark z-wave plus. and require Association command, AGI, Central Scene, both HC support it so they should work w/o our help

     

    First please check

    - in group 1 of association is setting to HC (device id 1)

    - is device is configured on true

    - in lua please check is device send any action central scene (key pressed)

     

    Thanks

     

    yes to the first query

     

    Please login or register to see this attachment.

     

    I'm not sure how to check the other two suggestions ...

    Link to comment
    Share on other sites

    • 0

    2nd - hc2_ip/api/devices/id_of_devices

     

    3rd frm left menu chose your device and clik on all trigers key pressed, later write fibaro:debug("i't works"); then just start presing keys if you see text in debug that mean that is working

    Link to comment
    Share on other sites

    • 0
  • Inquirer
  • 2nd - hc2_ip/api/devices/id_of_devices

     

    3rd frm left menu chose your device and clik on all trigers key pressed, later write fibaro:debug("i't works"); then just start presing keys if you see text in debug that mean that is working

     

    device ID dump is 

    Please login or register to see this code.

    I'm still not sure what you mean by the thrid ask....

     

    Third menu is the devices menu (correct?)

    this is what I see - not sure about triggers 

     

    Please login or register to see this attachment.

    Please login or register to see this attachment.

    Please login or register to see this attachment.

    Link to comment
    Share on other sites

    • 0

    Hi all. Will this one work with HCL as well? If there is no template, how do I know which scene activation id I need to add in the HCL scene's?

    Link to comment
    Share on other sites

    • 0
    Guest Veil

    Im trying to get this to work as well.

     

    Id dump of the Remotec unit

     

     

    Please login or register to see this code.

    Configuring is showing as true.

     

    I tried the lua code below:

     

    Please login or register to see this code.

     

    I do get the code "it works, key 1" when the button is pressed. So there is communication. Is there anyway I can get the buttons to show up in block scenes? I'm terrible at LUA.

    Link to comment
    Share on other sites

    • 0
  • Inquirer
  • Hi,

    Sorry - I have never worked in block scenes.

    I only started to learn lua 12 months ago and it's easy enough to pick up the basics.. once you get there you'll never look back...

     

    -frank

    Link to comment
    Share on other sites

    • 0

    Tried this and only get the debug when starting the scene, nothing with the button press.

     

    Steps I have gone through are

    - press W & L buttons and select add a device, which added the keypad as device 129, although in the parameter section is says ID 130, and in the advanced section on the advanced page, it says Node ID 29....

     

    - Created a new scene with the following code:

    --------------------------------

    --[[
    %% properties
    %% events
    %% globals
    --]]

    --[[
    %% properties
    %% events
    129 CentralSceneEvent 1 Pressed
    %% globals
    --]]

    local startSource = fibaro:getSourceTrigger();
    if (
     ( true )
    or
    startSource["type"] == "other"
    )
    then
      fibaro:debug("it works, key 1")
    end

    -------------------------------------------

    Then when you press Start, it outputs "[Debug} 12:48:34: It works, key 1" but no additional when pressing key 1

     

    What am I missing? Really need this device!

    Link to comment
    Share on other sites

    • 0
  • Inquirer
  • On 3/12/2016 at 2:01 AM, jaclarkaus said:

    Tried this and only get the debug when starting the scene, nothing with the button press.

     

    Steps I have gone through are

    - press W & L buttons and select add a device, which added the keypad as device 129, although in the parameter section is says ID 130, and in the advanced section on the advanced page, it says Node ID 29....

     

    - Created a new scene with the following code:

    --------------------------------

    --[[
    %% properties
    %% events
    %% globals
    --]]

    --[[
    %% properties
    %% events
    129 CentralSceneEvent 1 Pressed
    %% globals
    --]]

    local startSource = fibaro:getSourceTrigger();
    if (
     ( true )
    or
    startSource["type"] == "other"
    )
    then
      fibaro:debug("it works, key 1")
    end

    -------------------------------------------

    Then when you press Start, it outputs "[Debug} 12:48:34: It works, key 1" but no additional when pressing key 1

     

    What am I missing? Really need this device!

     

    I'll try and take a look later this evening.....

    Link to comment
    Share on other sites

    • 0
    On 12/3/2016 at 3:01 AM, jaclarkaus said:

    Tried this and only get the debug when starting the scene, nothing with the button press.

     

    Steps I have gone through are

    - press W & L buttons and select add a device, which added the keypad as device 129, although in the parameter section is says ID 130, and in the advanced section on the advanced page, it says Node ID 29....

     

    - Created a new scene with the following code:

    --------------------------------

    --[[
    %% properties
    %% events
    %% globals
    --]]

    --[[
    %% properties
    %% events
    129 CentralSceneEvent 1 Pressed
    %% globals
    --]]

    local startSource = fibaro:getSourceTrigger();
    if (
     ( true )
    or
    startSource["type"] == "other"
    )
    then
      fibaro:debug("it works, key 1")
    end

    -------------------------------------------

    Then when you press Start, it outputs "[Debug} 12:48:34: It works, key 1" but no additional when pressing key 1

     

    What am I missing? Really need this device!

    You have one too many scene headers. You need to remove one and it should work. Code should look like this:

    Please login or register to see this code.

    According to AutoFrank's template each button has this actions: Pressed, Released, HeldDown, Pressed2 so above scene should be triggered when key No. 1 is pressed and released ones in 1 second. Correct ID should be the one that is on right side of the device Icon shown on general tab.

    Link to comment
    Share on other sites

    • 0
    1 hour ago, Sankotronic said:

    Correct ID should be the one that is on right side of the device Icon shown on general tab

    Thanks. Not sure why it is not the same number as it used to add the device, but then it's not the only strange thing with this system!:-D

    1 hour ago, Sankotronic said:

    You have one too many scene headers. You need to remove one and it should work. Code should look like this:

    Thanks, that now works. Do you do one scene for each action, or can you have one long scene for any action for the device?

    Don't really understand the code, would be great if they added a template, but in meantime ...

    in the code above, I presume you can create several additional events, like '129 CentralSceneEvent 2 Pressed','129 CentralSceneEvent 3 Pressed' etc. but then how do you determine which button was pressed/held/etc.?

     

     

    Link to comment
    Share on other sites

    • 0

     

    On 16/07/2016 at 5:00 AM, A.Socha said:

    Device got in manual mark z-wave plus. and require Association command, AGI, Central Scene, both HC support it so they should work w/o our help

     

    First please check

    - in group 1 of association is setting to HC (device id 1)

    - is device is configured on true

    - in lua please check is device send any action central scene (key pressed)

     

     

    Would be better if the template was added so that it can be easily used. Is it possible to add the template at the user end?

    Link to comment
    Share on other sites

    • 0
  • Inquirer
  • 17 minutes ago, jaclarkaus said:

    Spectacular! Thanks to both of you.

     

    Cool, let us know if you still need help ...

     

     

    Link to comment
    Share on other sites

    • 0

    I also have a ZRC-90 and i found this youtube: 

     

     

    i dont get it at work, this is what i get, can somebody please help?

     

    Please login or register to see this attachment.

    Please login or register to see this attachment.

    Link to comment
    Share on other sites

    • 0

    @Chundo

    Can you provide the debug result for fibaro:debug(json.encode(sa)) ?

    I do believe you're hitting "Start" button in the scene. Am I right?

    When You do this the trigger is not the device but the scene itself, so there the parameters you try to compare just don't exist. Use the device to run the scene.

     

    As a ex-game dev... looking at this code makes me fill bad... But I'm not here to teach anyone how to write readable and/or efficient code... 

    Link to comment
    Share on other sites

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