18.06.2024, 12:43
Run "Set addresses for new devices only" scan mode. This will assign short addresses to ballasts that don't already have one.
"Full scan, keep device mapping" scan mode will remove any missing ballasts from the list.
There's no built-in option for changing short addresses but it can be done via a script:
You will need to run scan again (without addressing) after that and assign mapping for the new short address.
"Full scan, keep device mapping" scan mode will remove any missing ballasts from the list.
There's no built-in option for changing short addresses but it can be done via a script:
Code:
old_address = 12
new_address = 63
require('user.dali')
dalicmd('internal', 'setdtr', { addrtype = 'short', address = old_address , value = new_address * 2 + 1 })
dalicmd('internal', 'storeshortaddress', { addrtype = 'short', address = old_address })
You will need to run scan again (without addressing) after that and assign mapping for the new short address.