Logic Machine Forum
LM5p2-DR internal DALI gateway respond time - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Gateway (https://forum.logicmachine.net/forumdisplay.php?fid=10)
+--- Thread: LM5p2-DR internal DALI gateway respond time (/showthread.php?tid=4649)



LM5p2-DR internal DALI gateway respond time - richard7 - 15.03.2023

Dear Admin,

I actived the internal DALI gateway for LM5p2-DR(Firmware).
During the test, I found that to turn on the lamp(short,add=1) needs 5-6 seconds and full for 3-4 seconds.
I try use Dali command(Resident scripting as below) to shorten the reaction time but no progress.

require('user.dali')
dalicmd( 'internal', 'setdtr', { addrtype = 'short', address = 1, value = 1})
dalicmd( 'internal', 'storefadetime', { addrtype = 'short', address = 1})
dalicmd( 'internal', 'setdtr', { addrtype = 'short', address = 1, value = 1})
dalicmd( 'internal', 'storefaderate', { addrtype = 'short', address = 1})

Any way out if I want to turn on lamp immediately?

And what is the default fade time and fade rate setting for the internal DALI gateway ?

Thanks.


RE: LM5p2-DR internal DALI gateway respond time - richard7 - 15.03.2023

LM5p2-DR Firmware is 20221205(2022-RC1)


RE: LM5p2-DR internal DALI gateway respond time - admin - 15.03.2023

Fade time and rate only is a ballast setting. The gateway simply sends either an absolute value (arc) or a relative up/down dimming.

Fade time values (absolute value):
Code:
0 = No fade
1 = 0.7 sec
2 = 1.0 sec
3 = 1.4 sec
4 = 2.0 sec
5 = 2.8 sec
6 = 4.0 sec
7 = 5.7 sec
8 = 8.0 sec
9 = 11.3 sec
10 = 16.0 sec
11 = 22.6 sec
12 = 32.0 sec
13 = 45.3 sec
14 = 64.0 sec
15 = 90.5 sec

Fade rate settings (relative dimming):
Code:
1 = 357.8 steps/sec
2 = 253.0 steps/sec
3 = 178.9 steps/sec
4 = 126.5 steps/sec
5 = 89.4 steps/sec
6 = 63.3 steps/sec
7 = 44.7 steps/sec
8 = 31.6 steps/sec
9 = 22.4 steps/sec
10 = 15.8 steps/sec
11 = 11.2 steps/sec
12 = 7.9 steps/sec
13 = 5.6 steps/sec
14 = 4.0 steps/sec
15 = 2.8 steps/sec



RE: LM5p2-DR internal DALI gateway respond time - richard7 - 15.03.2023

Hi admin, this info. helps me a lot, thanks!