Info |
---|
Panels have a universal design and are equipped with status LEDs. They are available in 2, 4, 6, and 8 buttons versions.
How to use it in the LMS design?
To place switches in the project, you need to remember the typical Ethernet2DALI limitations. The maximum DALI current consumption of these switches is 10 mA while the average DALI current consumption is 3 mA. Wall panels are compatible with the newest DALI-2 protocol, which means that they take only one DALI address on the DALI line.
Additionally, you can use the feedback diode function to monitor the state of the DALI groups. You can program these diodes.
The panels are compatible with the European standard electrical junction box (Ø60). There are two ways of mounting - using sticker or screws. Both are included in the box with the wall panel.
How to commission it?
Wall panels have several diodes. One for each push button and one on the top. The upper diode on is used for identification.
To program a logic within the Node-RED tool you need to use a dali2devs node, which is available in the node palette on the left-hand side of Node-RED UI.
To set up the button you need to choose the serial number of your service in the Serial Number field and choose the push button which you want to control in Dali2 Device field. For standard toggle button use Mode: Normal. If you need to create function of dimming choose Mode:ESDIM.
Then configure the vertex action node according to the function which you want to achieve. You can choose between several types of actions like single button, toggle button, triple button or dimm button. Remember to connect your flow to the vertex cluster node. In In the vertex feedback, select the same group as in the vertex action. Remember to connect your flow to the vertex cluster node.
Import the ready flow using the code below:
Code Block |
---|
[ { "id": "10961162.3e464f", "type": "dali2devs", "z": "7d36af1.356d55", "name": "", "uid": "FB5E364E0002D7E3", "dali2dev": "0", "instanceType": 1, "dali2t1": 90, "dali2t2": "", "mode": "normal", "x": 450, "y": 300, "wires": [ [ "ae2ba233.112f5" ] ] }, { "id": "ae2ba233.112f5", "type": "vertex action", "z": "7d36af1.356d55", "name": "", "typeButton": "toggle", "bPayload": { "ON": { "action": "setbrightness", "group": "8471eb31985a5a3b085dd1d499d04773", "param": "100", "priority": "254" }, "OFF": { "action": "setbrightness", "group": "8471eb31985a5a3b085dd1d499d04773", "param": "0", "priority": "254" } }, "bState": false, "defaultpriority": true, "x": 660, "y": 300, "wires": [ [ "f98c928e.6970c" ] ] }, { "id": "f98c928e.6970c", "type": "vertex cluster", "z": "7d36af1.356d55", "userouting": false, "rate": 5, "x": 880, "y": 300, "wires": [] }, { "id": "f1825a33.17b728", "type": "vertex feedback", "z": "7d36af1.356d55", "name": "", "primarygroup": "", "x": 260, "y": 300, "wires": [ [ "10961162.3e464f" ] ] } ] |