19.06.2019, 09:37
DALI has configurable levels for SYSTEM FAILURE and POWER ON states. If this level is set to 255 (MASK) then SYSTEM FAILURE should be ignored and POWER ON state should be equal to last light level.
You can change these levels via a script (in this example on all ballasts on first internal DALI bus):
You can change these levels via a script (in this example on all ballasts on first internal DALI bus):
Code:
require('user.dali')
value = 0 -- from 0 to 255
dalicmd('internal', 'setdtr', { addrtype = 'broadcast', value = value })
dalicmd('internal', 'storepoweron', { addrtype = 'broadcast' })
value = 0 -- from 0 to 255
dalicmd('internal', 'setdtr', { addrtype = 'broadcast', value = value })
dalicmd('internal', 'storesystemfailure', { addrtype = 'broadcast' })