Electronic – DALI error detection command

dalilamp

I need a help from someone who knows DALI standard well and has experience on it and knows DALI control gears' structure.

I make a DALI related application and aim to detect if the connected lamp is broken. To do so, I send following commands to the DALI control gear (slave)

0x92 Check if there is a lamp failure 
0x93 Check if the lamp is operating 
0x9B Check if the slave is in power failure mode 

before it, I disconnect the lamp unit, then send the commands above, however, the slave unit does not report any failure. I use couple different DALI unit of Tridonic. I wonder why removing a lamp source do not generate a failure report?

Could you please explain the logic how the DALI control gears detect the broken lamps (e.g. in what cases the DALI unit generates response to 0x92, 0x93, 0x9B)?

What command is the best to detect the broken lamps?

EDIT:
I send 144 query message, its definition on the standard:

enter image description here

As a reply, I get this signal at the oscilloscope:
enter image description here

means:

start bit(1) |  reply (8)          | stop bits(2)
     1       |  0 0 0 1 0 1 0 0    | 1 1 

means:

  • 0: the ballast is working fine
  • 0: no lamp failure is detected (if there is no lamp unit, why it is not a failure? and what is the description of the failure?)
  • 0: arc power is off?
  • 1: limit error — (I send 0xFEA0 which is an arc power setting, I could not understand why it is 1)
  • 0: no fading is ongoing
  • 1: reset state is present
  • 0: it has short address
  • 0: no power failure ( it received RESET command and arc power control command)

the timing is a little bit bad but I have an ad-hoc method to read it successfully anyway. I get the same reply if the lamp unit exist or if I remove the lamp unit on the run-time.

I wonder why DALI do not generate a failure if the lamp unit does not exist (or removed on the run-time)? What cases are defined as failure? I wanted to test that I can detect the lamp failures (without breaking my lamp unit:), so that I am disconnecting the lamp unit. Is it a wrong thinking? If it is so, how should I have tested it so that I can get the lamp failure report from the DALI slave?

What command (or command sequence) is the most reliable way to detect a broken LED lamp (by querying from DALI LED control gear)?

I feel like I cause to take one's time to get a reply. I would be happily give 100 bounty for a satisfactory answer to show my gratitude.

Best Answer

Adding as a seperate answer because the new question is different from the original:

Your Manchester decoding is correct but the bit order is b8-b7 etc to b0 so you have the bit decoding backwards. The set bits are b2 = arc power ON and b4 = Fade is running. These make sense as you have sent broadcast DAPC to level 0xA0 and have set a long fade time (5.6 seconds.

There are multiple errors in your command listing

  • msg 5 0xA370 would store 0x70 in DTR, presume you mean 0xA307
  • msg 8 0x072E stores DTR as fade time in gear with short address 3. DTR 7 means fade time is 5.6 seconds. If you want 16s, DTR should be 10 = 0x0A.
  • msg 3 & 4 & 10 Intialise and Terminate are only needed for the programming the short address commands (the randomise and binary search), not for setting configuration values like fade time and group addresses.
  • msg 12 queries status of gear at short address 3.

I'd get rid of the extra messages, have one gear on the bus, use broadcast messages and command 146 so you don't even have to interpret bits, it's either responding or not. Frankly, the number of errors made in your amended question doesn't give me confidence in your code. However, since the gear is reporting to be on, a missing lamp should give you a lamp fail. It doesn't matter when the lamp was removed. There are many electronics causes for lamp fail to be reported, depending on the lamp technology. For fluorescent lamps it is not just current from one end to the other, it can be broken heater wires at one end or failure to start up after a defined strike period, or some other reason found when monitoring the currents and voltages of the tube.

Edit: now that the question is specifically about LEDs, IEC6236-207 is applicable.

Command 240 Query Features tells you if the gear supports such things as open circuit detection, load decrease detection, thermal shut down, current protection etc. If your gear tells you it doesn't detect open circuit or detection of load decrease (bits 1 and 2) then you are not going to get lamp fail detection from this gear. But if it does, you could determine which type of lamp failure had occurred with Command 251, Query Failure Status which responds with bit 1 for open circuit and bit 2 for load decrease.

Note that commands above 236 are Application Exended Query Commands which mean they need preceeding by Command 272 Enable Device Type with data 6 (for LEDs).

The response to Command 146 Query Lamp failure, and bit 1 in the response to Command 144 Query Status are the result of an OR operation on the bits 0 to 4 in the Failure Status reported in Command 241 Query Failure Status.

In summary, I think this particular gear does not detect lamp failure as an open circuit condition, and it probably doesn't detect lamp failure as other conditions either; you're query is correct but just not supported by the gear.