This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Delay for DALI !
#4
You can try using a script instead of object mapping for binary light control. This event script must be mapped to a binary object. It will control ballast with short address 1.
Code:
require('user.dali')
cmd = event.getvalue() and 'recallmax' or 'off'
res, err = dalicmd('internal', cmd, { addrtype = 'short', address = 1 })

As for status you cannot use broadcast if you have more than 1 ballast. All ballasts will reply to broadcast query which will result in a collision error. Use short address mode for queries:
Code:
res, err = dalicmd('internal', 'querystatus', { addrtype = 'short', address = 0 })
Reply


Messages In This Thread
Delay for DALI ! - by phongvucba - 01.06.2020, 06:31
RE: Delay for DALI ! - by admin - 01.06.2020, 06:52
RE: Delay for DALI ! - by phongvucba - 02.06.2020, 03:55
RE: Delay for DALI ! - by admin - 02.06.2020, 07:44
RE: Delay for DALI ! - by phongvucba - 02.06.2020, 08:06
RE: Delay for DALI ! - by admin - 02.06.2020, 11:28
RE: Delay for DALI ! - by phongvucba - 02.06.2020, 16:08
RE: Delay for DALI ! - by phongvucba - 03.06.2020, 03:32
RE: Delay for DALI ! - by admin - 03.06.2020, 06:11
RE: Delay for DALI ! - by davidchispas - 04.01.2021, 09:59
RE: Delay for DALI ! - by phongvucba - 14.11.2020, 07:17
RE: Delay for DALI ! - by admin - 14.11.2020, 08:05
RE: Delay for DALI ! - by phongvucba - 14.11.2020, 09:15
RE: Delay for DALI ! - by Daniel - 16.11.2020, 08:40
RE: Delay for DALI ! - by phongvucba - 01.12.2020, 11:27
RE: Delay for DALI ! - by davidchispas - 24.11.2020, 10:46
RE: Delay for DALI ! - by admin - 24.11.2020, 10:48
RE: Delay for DALI ! - by admin - 24.11.2020, 10:58
RE: Delay for DALI ! - by davidchispas - 24.11.2020, 11:12
RE: Delay for DALI ! - by Daniel - 01.12.2020, 11:30
RE: Delay for DALI ! - by admin - 04.01.2021, 10:58
RE: Delay for DALI ! - by davidchispas - 05.01.2021, 09:34
RE: Delay for DALI ! - by admin - 05.01.2021, 09:36
RE: Delay for DALI ! - by davidchispas - 13.01.2021, 10:47
RE: Delay for DALI ! - by Daniel - 13.01.2021, 11:00

Forum Jump: