2505_LSS100400_SW_04.0

Specific Configuration of the ZigBee Devices

Before installing the device, check this table for specific configuration requirements. You can find the list of supported devices here: Supported Devices.

Device

Issue

Solution

Avatar Free locate switch

You want to assign different functions to the avatar free locate switch keys.

You can only assign a scene function to the keys of the avatar free locate switch. You assign the desired functions to the scenes.

The following example describes how to turn lights off and on with keys 1 and 2 and control shutter with keys 3 and 4.

  1. Go to your device Parameters in the Hybrid plugin > assign a scene function and a scene number to each key in the Parameters form.

    .

    Key Nr.

    Function

    Scene Nr.

    1

    Scene

    0

    2

    Scene

    1

    3

    Scene

    2

    4

    Scene

    3

  2. Use the following script to link the key functions:

    SC = event.getvalue()
     Light1 = '0/0/1'
     Light1_St = '0/0/2'
     Light2 = '0/0/3'
     Light2_St = '0/0/4'
     C1_Stop4B = '1/1/6'
     -------------------
     
    L1 =grp.getvalue(Light1_St)
     L2 =grp.getvalue(Light2_St)
     C1stop=grp.getvalue(C1_Stop4B)
     
    if SC==0 then -- FLS button 1 toggle Light 1
     grp.write(Light1, not L1)
    
     elseif SC==1 then -- FLS button 2 toggle Light 2
     grp.write(Light2, not L2)
     
    elseif SC==2 then -- FLS button 3 open or stop curtain 1
     if C1stop ~= 0 then
       grp.write(C1_Stop4B,0)
       else 
       grp.write(C1_Stop4B,6)
     end
    
     elseif SC==3 then -- FLS button 4 open or stop curtain 1
     if C1stop ~= 0 then
       grp.write(C1_Stop4B,0)
       else 
       grp.write(C1_Stop4B,13)
     end
     
     end

Avatar Blind

You want to move your curtain to a precise (absolute) position.

For this device, absolute positioning only fully closes or fully opens.

Avatar Blind

You want to open/close slats.

The product supports only the control of curtains. Map Up/Down objects to the Left/Right objects depending on your installation.

Dimmers and switches

Order of 2-gang keys for dimmers and switches.

For 2-gang dimmers or switches (Avatar range excluded), the right keys are gang/output #1, and the left keys are gang/output #2.

Dimmers

You want to control the ZigBee dimmer via relative dimming function.

Link the 03.007 dim/blinds step object to 4 bits Start/stop dimming Hybrid object of the free locate switch.

NOTE: For the Start/stop dimming object, the dimming speed is irrelevant to the selected value. For example, the object value Up 1% will dim up as quickly as theUp 100% one.

Shutters/Blinds

The shutters/blinds move in reverse. Instead of down, they go up and vice versa.

  1. Go to your device Parameters in the Hybrid plugin > select inverse shutter in the Parameters form.

  2. Cross the wires leading to the shutter motor.

  3. Swap the drive up and down time in the Parameters form.

Motion sensor – Dimmer, Switch, Ceiling

The Illuminance object is sent every 10 seconds and overloads CPU.

Unmap Illuminance objects that are not necessary.

Go to Configuration of your device > find 2 bytes Illuminance object field > unmap the object (the object field has to be empty) > click Save.



QR Code is a registered trademark of DENSO WAVE INCORPORATED in Japan and other countries.

Was this helpful?