This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

CANx DALI updates
#1
New option - Minimum arc value.

Why is this option needed?
DALI ballasts have two properties - physical minimum and settable minimum. This minimum value dictates the lowest possible brightness that the ballast can produce. This means that the range between 1 and minimum produces the same brightness value. We've implemented an option so the whole control range can be used.

How does this option work?
This option scales non-zero control and status arc values from the standard 1..254 range to minimum..254 range. For example, if you set the minimum arc value to 120 then sending 1% will produce 120 arc value; sending 50% will produce 120 + (254 - 120) * 50% = 187; sending 100% will produce 254 (maximum arc value). Sending 0% will turn the ballast off no matter what the minimum setting is. The status value is calculated in reverse. Due to rounding errors the status value can have a ±1 difference with the control value. It is recommend to set the minimum arc value to the same value as ballast actual physical minimum.

For this to work you need to update both CANx and CANx DALI apps from the store.

   
Reply
#2
New features in CANx-DALI app (version 20260612).

1. Binary search for addressed ballasts
This feature allows finding an addressed ballast in 7 steps by turning certain ballasts on and off. It is particularly useful in large installations because the short addresses are assigned randomly and ballasts must be identified manually.

Click Find in the Devices tab to run the search:
   

2. Color settings for DT8 CT, RGB(W/A/F) and DT8 RGBWA support
You can now set power on and system failure color values for DT8 devices.
       

3. New scripting functions for setting dimming curve type (logarithmic or linear) in DT5 and DT6 devices

DT5 (conversion from digital)
Code:
canxdali = require('applibs.canxdali') canxdali.sendcmds({   lineid = 0,   nodeid = 1,   cmds = {     { cmd = 'setdtr0', value = 1 }, -- 0 = logarithmic, 1 = linear     { cmd = 'enabledevicetype', value = 5 },     { cmd = 'selectdimmingcurvedt5', address = 's0' },   } })

DT6 (LED modules)
Code:
canxdali = require('applibs.canxdali') canxdali.sendcmds({   lineid = 0,   nodeid = 1,   cmds = {     { cmd = 'setdtr0', value = 1 }, -- 0 = logarithmic, 1 = linear     { cmd = 'enabledevicetype', value = 6 },     { cmd = 'selectdimmingcurvedt6', address = 's0' },   } })
Reply


Forum Jump: