11.06.2026, 10:43
First you need to update CANx-DALI app: https://dl.openrb.com/pkg/canxdali-20260611.ipk
Installation: on the main apps screen click the + icon when logged in as admin. Click the menu in the top left and select "Install from file". Enable "Allow to install package without signature" option.
Then use this script to set dimming curve to linear on gateway 0.1 short address 0.
Installation: on the main apps screen click the + icon when logged in as admin. Click the menu in the top left and select "Install from file". Enable "Allow to install package without signature" option.
Then use this script to set dimming curve to linear on gateway 0.1 short address 0.
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 = 'selectdimmingcurve', address = 's0' },
}
})