(11.12.2020, 10:08)Daniel. Wrote: If you still have the tx error then it is most likely broken interface.
Just to clarify, the partial scan is a scan which will find only devices which have no short address. If a ballast was already used elsewhere and programmed partial scan will not find it. DALI app for canX dali has more options for this.
Yes, I understand the partial scan, but doing a full search already assigns the short addresses to the ballasts again.
I'll do the test by substituting the LM for the one on the way.
The CANx gateways are much better, it even gives us states and it is a great work that saves. If I could replace the Logic M. with a CANX one and not have to look for the ballasts again it would be great, but this I understand that it cannot be done.
16.12.2020, 07:38 (This post was last modified: 16.12.2020, 07:50 by davidchispas.)
(15.12.2020, 15:42)Daniel. Wrote: Check minimum dimming value, it is parameter of the ballast, If you can change it lower then you will be able to go lower.
Hello Daniel, I understand that this parameter is not generated from LM, it is something internal to the ballast. or am I wrong? I have a Mean Well ELG-240H-24B, with the naked eye I can't do anything to it.
There are two minimums - physical and user-defined. User-defined cannot be lower than physical. You can use querymin/queryphysicalmin to get both minimum values. CANx-DALI has this visible/configurable through UI.
(16.12.2020, 07:58)admin Wrote: There are two minimums - physical and user-defined. User-defined cannot be lower than physical. You can use querymin/queryphysicalmin to get both minimum values. CANx-DALI has this visible/configurable through UI.
Hi Admin,
in the CAN X gateway I can see that minimum physical value that is equal to 161, but it does not let me download it from there. My led barely dims. If I want to take it to a value lower than 10%, what should I do?
(19.06.2019, 09:37)admin Wrote: 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):
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' })
Hello Admin
I have the same issue and the script solve the issue for the dimmable dali driver
but I have DT8 RGBW driver that in power failure go to a specific color (last color used) not to the last on/off state
Try setting all RGBWAF channel value to 255 before executing storepoweron/storesystemfailure. You need to modify the setRGBWAF function because it clamps the maximum value to 254 using math.min.
after successful upgrade my LM4 to the latest firmware, I noticed that all scripts with dalicmd failed to run. It looks like user.dali script is empty. Can I get user.dali script?
Thanks