11 hours ago
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)
DT6 (LED modules)
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' },
}
})