Prep DALI for colour control
This commit is contained in:
parent
160ec1376f
commit
f5ebfede02
@ -16,25 +16,25 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Address types - Send as first byte
|
||||
#define DALI_SHORT_ADDRESS0 0x0000 // 0b00000000 0 - First short address
|
||||
#define DALI_SHORT_ADDRESS1 0x0002 // 0b00000010 1 - Next short address
|
||||
#define DALI_SHORT_ADDRESS0 0x00 // 0b00000000 0 - First short address
|
||||
#define DALI_SHORT_ADDRESS1 0x02 // 0b00000010 1 - Next short address
|
||||
// ...
|
||||
#define DALI_SHORT_ADDRESS63 0x007E // 0b01111110 63 - Last short address
|
||||
#define DALI_GROUP_ADDRESS0 0x0080 // 0b10000000 0 - First group address
|
||||
#define DALI_GROUP_ADDRESS1 0x0082 // 0b10000010 1 - Next group address
|
||||
#define DALI_SHORT_ADDRESS63 0x7E // 0b01111110 63 - Last short address
|
||||
#define DALI_GROUP_ADDRESS0 0x80 // 0b10000000 0 - First group address
|
||||
#define DALI_GROUP_ADDRESS1 0x82 // 0b10000010 1 - Next group address
|
||||
// ...
|
||||
#define DALI_GROUP_ADDRESS15 0x009E // 0b10011110 15 - Last group address
|
||||
#define DALI_BROADCAST_DP 0x00FE // 0b11111110 254 - Broadcast address
|
||||
#define DALI_GROUP_ADDRESS15 0x9E // 0b10011110 15 - Last group address
|
||||
#define DALI_BROADCAST_DP 0xFE // 0b11111110 254 - Broadcast address
|
||||
|
||||
/*-------------------------------------------------------------------------------------------*\
|
||||
* DALI Commands for IEC62386 part 102 = Control gears - Send as first byte
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Special commands - Send as first byte
|
||||
#define DALI_102_TERMINATE 0x00A1 // 256 - All special mode processes (like DALI_102_INITIALISE) shall be terminated.
|
||||
#define DALI_102_SET_DTR0 0x00A3 // 257 - Stores the data XXXX XXXX to the Data Transfer Register (Data Transfer Register 0).
|
||||
#define DALI_102_TERMINATE 0xA1 // 256 - All special mode processes (like DALI_102_INITIALISE) shall be terminated.
|
||||
#define DALI_102_SET_DTR0 0xA3 // 257 - Stores the data XXXX XXXX to the Data Transfer Register (Data Transfer Register 0).
|
||||
// This is a broadcast command to set the value of the DTR0 register.
|
||||
#define DALI_102_INITIALISE 0x01A5 // 258 REPEAT - Sets the ballast to the INITIALISE status for 15 minutes. Commands 167 to 189 are enabled only for a ballast in this status.
|
||||
#define DALI_102_INITIALISE 0xA5 // 258 REPEAT - Sets the ballast to the INITIALISE status for 15 minutes. Commands 167 to 189 are enabled only for a ballast in this status.
|
||||
// This command shall start or re-trigger a timer for 15 minutes; the addressing commands 167..189 shall only be processed within this period.
|
||||
// All other commands shall still be processed during this period.
|
||||
// This time period shall be aborted with the "DALI_102_TERMINATE" command.
|
||||
@ -42,86 +42,86 @@
|
||||
// - if broadcast is True then all ballasts shall react
|
||||
// - if broadcast is False and address is None then ballasts without a short address shall react
|
||||
// - if broadcast is False and address is an integer 0..63 then ballasts with the address supplied shall react
|
||||
#define DALI_102_RANDOMISE 0x01A7 // 259 REPEAT - Generates a random address.
|
||||
#define DALI_102_RANDOMISE 0xA7 // 259 REPEAT - Generates a random address.
|
||||
// The ballast shall generate a new 24-bit random address. The new random address shall be available within a time period of 100ms.
|
||||
#define DALI_102_COMPARE 0x00A9 // 260 - Is the random address smaller or equal to the search address?
|
||||
#define DALI_102_COMPARE 0xA9 // 260 - Is the random address smaller or equal to the search address?
|
||||
// The ballast shall compare its 24-bit random address with the combined search address stored in SearchAddrH, SearchAddrM and SearchAddrL.
|
||||
// If its random address is smaller or equal to the search address and the ballast is not withdrawn then the ballast shall generate a query "YES".
|
||||
#define DALI_102_WITHDRAW 0x00AB // 261 - Excludes ballasts for which the random address and search address match from the Compare process.
|
||||
#define DALI_102_WITHDRAW 0xAB // 261 - Excludes ballasts for which the random address and search address match from the Compare process.
|
||||
// The ballast that has a 24-bit random address equal to the combined search address stored in SearchAddrH, SearchAddrM and SearchAddrL
|
||||
// shall no longer respond to the compare command.
|
||||
// This ballast shall not be excluded from the initialisation process.
|
||||
#define DALI_102_RESERVED173 0x00AD // 262 - [Reserved]
|
||||
#define DALI_102_PING 0x00AF // 263 - DALI-2 Ignores in the ballast.
|
||||
#define DALI_102_PING 0xAD // 262 - DALI-2 Ignores in the ballast.
|
||||
// Transmitted at 10 minute intervals by single master application controllers (that cannot perform collision detection) to indicate their presence.
|
||||
// Ignored by control gear.
|
||||
#define DALI_102_SEARCHADDRH 0x00B1 // 264 - Specifies the higher 8 bits of the search address.
|
||||
#define DALI_102_SEARCHADDRM 0x00B3 // 265 - Specifies the middle 8 bits of the search address.
|
||||
#define DALI_102_SEARCHADDRL 0x00B5 // 266 - Specifies the lower 8 bits of the search address.
|
||||
#define DALI_102_PROGRAM_SHORT_ADDRESS 0x00B7 // 267 - The ballast shall store the received 6-bit address (AAA AAA) as a short address if it is selected.
|
||||
#define DALI_102_RESERVED263 0xAF // 263 - [Reserved]
|
||||
#define DALI_102_SEARCHADDRH 0xB1 // 264 - Specifies the higher 8 bits of the search address.
|
||||
#define DALI_102_SEARCHADDRM 0xB3 // 265 - Specifies the middle 8 bits of the search address.
|
||||
#define DALI_102_SEARCHADDRL 0xB5 // 266 - Specifies the lower 8 bits of the search address.
|
||||
#define DALI_102_PROGRAM_SHORT_ADDRESS 0xB7 // 267 - The ballast shall store the received 6-bit address (AAA AAA) as a short address if it is selected.
|
||||
// It is selected if:
|
||||
// - the ballast's 24-bit random address is equal to the address in SearchAddrH, SearchAddrM and SearchAddrL
|
||||
// - physical selection has been detected (the lamp is electrically disconnected after reception of command PhysicalSelection())
|
||||
// If address is 255 ("MASK") then the short address shall be deleted.
|
||||
#define DALI_102_VERIFY_SHORT_ADDRESS 0x00B9 // 268 - Is the short address AAA AAA?
|
||||
#define DALI_102_VERIFY_SHORT_ADDRESS 0xB9 // 268 - Is the short address AAA AAA?
|
||||
// The ballast shall give an answer 255 ("YES") if the received short address is equal to its own short address.
|
||||
#define DALI_102_QUERY_SHORT_ADDRESS 0x00BB // 269 - What is the short address of the ballast being selected?
|
||||
#define DALI_102_QUERY_SHORT_ADDRESS 0xBB // 269 - What is the short address of the ballast being selected?
|
||||
// The ballast shall send the short address if the random address is the same as the search address or the ballast is physically selected.
|
||||
// The answer will be in the format (address<<1)|1 if the short address is programmed, or "MASK" (0xff) if there is no short address stored.
|
||||
#define DALI_102_PHYSICAL_SELECTION 0x00BD // 270 - not DALI-2 Sets the ballast to Physical Selection Mode and excludes the ballast from the Compare process. (Excluding IEC62386-102ed2.0)
|
||||
#define DALI_102_RESERVED191 0x00BF // 271 - [Reserved]
|
||||
#define DALI_102_PHYSICAL_SELECTION 0xBD // 270 - not DALI-2 Sets the ballast to Physical Selection Mode and excludes the ballast from the Compare process. (Excluding IEC62386-102ed2.0)
|
||||
#define DALI_102_RESERVED191 0xBF // 271 - [Reserved]
|
||||
|
||||
// Extending special commands - Send as first byte
|
||||
#define DALI_102_ENABLE_DEVICE_TYPE_X 0x00C1 // 272 - Adds the device XXXX (a special device).
|
||||
#define DALI_102_ENABLE_DEVICE_TYPE_X 0xC1 // 272 - Adds the device XXXX (a special device).
|
||||
// This command shall be sent before an application extended command.
|
||||
// This command can be processed without the use of the Initialise() command.
|
||||
// This command shall not be used for device type 0.
|
||||
#define DALI_102_SET_DTR1 0x00C3 // 273 - Stores data XXXX into Data Transfer Register 1.
|
||||
#define DALI_102_SET_DTR1 0xC3 // 273 - Stores data XXXX into Data Transfer Register 1.
|
||||
// This is a broadcast command to set the value of the DTR1 register.
|
||||
#define DALI_102_SET_DTR2 0x00C5 // 274 - Stores data XXXX into Data Transfer Register 2.
|
||||
#define DALI_102_SET_DTR2 0xC5 // 274 - Stores data XXXX into Data Transfer Register 2.
|
||||
// This is a broadcast command to set the value of the DTR2 register.
|
||||
#define DALI_102_WRITE_MEMORY_LOCATION 0x00C7 // 275 - Write data into the specified address of the specified memory bank. (There is BW) (DTR(DTR0):address, DTR1:memory bank number)
|
||||
#define DALI_102_WRITE_MEMORY_LOCATION 0xC7 // 275 - Write data into the specified address of the specified memory bank. (There is BW) (DTR(DTR0):address, DTR1:memory bank number)
|
||||
// This instruction will be ignored if the addressed memory bank is not implemented, or writeEnableState is DISABLED.
|
||||
// If the instruction is executed then the control gear will write data into the memory location identified by DTR0 in bank DTR1 and return data as an answer.
|
||||
// If the location is not implemented, above the last accessible location, locked or not writeable, the answer will be NO (-1).
|
||||
// If the location addressed is below 0xff, then DTR0 will be incremented by 1.
|
||||
#define DALI_102_WRITE_MEMORY_LOCATION_NO_REPLY 0x00C9 // 276 - DALI-2 Write data into the specified address of the specified memory bank. (There is no BW) (DTR(DTR0):address, TR1:memory bank number)
|
||||
#define DALI_102_WRITE_MEMORY_LOCATION_NO_REPLY 0xC9 // 276 - DALI-2 Write data into the specified address of the specified memory bank. (There is no BW) (DTR(DTR0):address, TR1:memory bank number)
|
||||
// This instruction will be ignored if the addressed memory bank is not implemented, or writeEnableState is DISABLED.
|
||||
// If the instruction is executed then the control gear will write data into the memory location identified by DTR0 in bank DTR1
|
||||
// If the location is not implemented, above the last accessible location, locked or not writeable, the answer will be NO (-1).
|
||||
// If the location addressed is below 0xff, then DTR0 will be incremented by 1.
|
||||
#define DALI_102_RESERVED277 0x00CB // 277 - [Reserved]
|
||||
#define DALI_102_RESERVED277 0xCB // 277 - [Reserved]
|
||||
// ...
|
||||
#define DALI_102_RESERVED349 0x00FD // 349 - [Reserved]
|
||||
#define DALI_102_RESERVED349 0xFD // 349 - [Reserved]
|
||||
|
||||
/*-------------------------------------------------------------------------------------------*\
|
||||
* DALI Commands for IEC62386 part 102 = Control gears - Send as second byte
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Control commands - Send as second byte without repeat
|
||||
#define DALI_102_OFF 0x0000 // 0 - Turns off lighting (without fade).
|
||||
#define DALI_102_UP 0x0001 // 1 - Increases the lighting control level for 200 ms according to the Fade rate.
|
||||
#define DALI_102_OFF 0x00 // 0 - Turns off lighting (without fade).
|
||||
#define DALI_102_UP 0x01 // 1 - Increases the lighting control level for 200 ms according to the Fade rate.
|
||||
// No change if the arc power output is already at the "MAX LEVEL".
|
||||
// If this command is received again while it is being executed, the execution time shall be re-triggered.
|
||||
// This command shall only affect ballasts with burning lamps.
|
||||
// No lamp shall be ignited with this command.
|
||||
#define DALI_102_DOWN 0x0002 // 2 - Decreases the lighting control level for 200 ms according to the Fade rate.
|
||||
#define DALI_102_DOWN 0x02 // 2 - Decreases the lighting control level for 200 ms according to the Fade rate.
|
||||
// No change if the arc power output is already at the "MIN LEVEL".
|
||||
// If this command is received again while it is being executed, the execution time shall be re-triggered.
|
||||
// Lamp shall not be switched off via this command.
|
||||
#define DALI_102_STEP_UP 0x0003 // 3 - Increments the lighting control level (without fade).
|
||||
#define DALI_102_STEP_UP 0x03 // 3 - Increments the lighting control level (without fade).
|
||||
// No change if the arc power output is already at the "MAX LEVEL".
|
||||
// This command shall only affect ballasts with burning lamps. No lamp shall be ignited with this command.
|
||||
#define DALI_102_STEP_DOWN 0x0004 // 4 - Decrements the lighting control level (without fade).
|
||||
#define DALI_102_STEP_DOWN 0x04 // 4 - Decrements the lighting control level (without fade).
|
||||
// No change if the arc power output is already at the "MIN LEVEL".
|
||||
// Lamps shall not be switched off via this command.
|
||||
#define DALI_102_RECALL_MAX_LEVEL 0x0005 // 5 - Maximizes the lighting control level to "MAX LEVEL" (without fade).
|
||||
#define DALI_102_RECALL_MAX_LEVEL 0x05 // 5 - Maximizes the lighting control level to "MAX LEVEL" (without fade).
|
||||
// If the lamp is off it shall be ignited with this command.
|
||||
#define DALI_102_RECALL_MIN_LEVEL 0x0006 // 6 - Minimizes the lighting control level to "MIN LEVEL" (without fade)
|
||||
#define DALI_102_RECALL_MIN_LEVEL 0x06 // 6 - Minimizes the lighting control level to "MIN LEVEL" (without fade)
|
||||
// If the lamp is off it shall be ignited with this command.
|
||||
#define DALI_102_STEP_DOWN_AND_OFF 0x0007 // 7 - Decrements the lighting control level and turns off lighting if the level is at the minimum (without fade).
|
||||
#define DALI_102_ON_AND_STEP_UP 0x0008 // 8 - Increments the lighting control level and turns on lighting if lighting is off (with fade).
|
||||
#define DALI_102_DIRECT_ARC_POWER_CONTROL 0x0009 // 9 - Enable DAPC Sequence
|
||||
#define DALI_102_STEP_DOWN_AND_OFF 0x07 // 7 - Decrements the lighting control level and turns off lighting if the level is at the minimum (without fade).
|
||||
#define DALI_102_ON_AND_STEP_UP 0x08 // 8 - Increments the lighting control level and turns on lighting if lighting is off (with fade).
|
||||
#define DALI_102_DIRECT_ARC_POWER_CONTROL 0x09 // 9 - Enable DAPC Sequence
|
||||
// Indicates the start of a command iteration of DAPC(level) commands.
|
||||
// The control gear shall temporarily use a fade time of 200ms while the command iteration is active independent of the actual fade/extended fade time.
|
||||
// The DAPC sequence shall end if 200ms elapse without the control gear receiving a DAPC(level) command.
|
||||
@ -129,48 +129,48 @@
|
||||
// value 0 - Off
|
||||
// value minLevel...maxLevel
|
||||
// value 255 - Retain current level
|
||||
#define DALI_102_GO_TO_LAST_ACTIVE_LEVEL 0x000A // 10 - DALI-2 Adjusts the lighting control level to the last light control level according to the Fade time.
|
||||
#define DALI_102_CONTINUOUS_UP 0x000B // 11 - DALI-2 Dim up using the set fade rate.
|
||||
#define DALI_102_GO_TO_LAST_ACTIVE_LEVEL 0x0A // 10 - DALI-2 Adjusts the lighting control level to the last light control level according to the Fade time.
|
||||
#define DALI_102_CONTINUOUS_UP 0x0B // 11 - DALI-2 Dim up using the set fade rate.
|
||||
// TargetLevel shall be set to maxLevel and a fade shall be started using the set fade rate. The fade shall stop when maxLevel is reached.
|
||||
#define DALI_102_CONTINUOUS_DOWN 0x000C // 12 - DALI-2 Dim down using the set fade rate.
|
||||
#define DALI_102_CONTINUOUS_DOWN 0x0C // 12 - DALI-2 Dim down using the set fade rate.
|
||||
// targetLevel shall be set to minLevel and a fade shall be started using the set fade rate. The fade shall stop when minLevel is reached.
|
||||
#define DALI_102_RESERVED13 0x000D // 13 - [Reserved]
|
||||
#define DALI_102_RESERVED14 0x000E // 14 - [Reserved]
|
||||
#define DALI_102_RESERVED15 0x000F // 15 - [Reserved]
|
||||
#define DALI_102_GO_TO_SCENE0 0x0010 // 16 - Adjusts the lighting control level for Scene XXXX according to the fade time.
|
||||
#define DALI_102_RESERVED13 0x0D // 13 - [Reserved]
|
||||
#define DALI_102_RESERVED14 0x0E // 14 - [Reserved]
|
||||
#define DALI_102_RESERVED15 0x0F // 15 - [Reserved]
|
||||
#define DALI_102_GO_TO_SCENE0 0x10 // 16 - Adjusts the lighting control level for Scene XXXX according to the fade time.
|
||||
// If the ballast does not belong to this scene, the arc power level remains unchanged.
|
||||
// If the lamp is off, it shall be ignited with this command.
|
||||
// If the value stored for this scene is zero and the lamp is lit then the lamp shall be switched off by this command after the fade time.
|
||||
// ...
|
||||
#define DALI_102_GO_TO_SCENE15 0x001F // 31 - Adjusts the lighting control level for Scene XXXX according to the fade time.
|
||||
#define DALI_102_GO_TO_SCENE15 0x1F // 31 - Adjusts the lighting control level for Scene XXXX according to the fade time.
|
||||
|
||||
// Configuration commands - Send as second byte with repeat
|
||||
#define DALI_102_RESET 0x0020 // 32 - The variables in the persistent memory shall be changed to their reset values.
|
||||
#define DALI_102_RESET 0x20 // 32 - The variables in the persistent memory shall be changed to their reset values.
|
||||
// It is not guaranteed that any commands will be received properly within the next 300ms by a ballast acting on this command.
|
||||
#define DALI_102_STORE_ACTUAL_LEVEL_IN_DTR0 0x0021 // 33 - Store actual arc power level in the DTR (DTR0) without changing the current light intensity.
|
||||
#define DALI_102_SAVE_PERSISTENT_VARIABLES 0x0022 // 34 - DALI-2 Saves a variable in nonvolatile memory (NVM).
|
||||
#define DALI_102_STORE_ACTUAL_LEVEL_IN_DTR0 0x21 // 33 - Store actual arc power level in the DTR (DTR0) without changing the current light intensity.
|
||||
#define DALI_102_SAVE_PERSISTENT_VARIABLES 0x22 // 34 - DALI-2 Saves a variable in nonvolatile memory (NVM).
|
||||
// All variables identified as non-volatile shall be stored to non-volatile memory.
|
||||
// The control gear might not react to commands for up to 300ms after reception of this command.
|
||||
// This command is recommended to be used typically after commissioning.
|
||||
#define DALI_102_SET_OPERATING_MODE 0x0023 // 35 - DALI-2 Set operatingMode to DTR0.
|
||||
#define DALI_102_SET_OPERATING_MODE 0x23 // 35 - DALI-2 Set operatingMode to DTR0.
|
||||
// If DTR0 does not correspond to an implemented operating mode, the command shall be ignored.
|
||||
#define DALI_102_RESET_MEMORY_BANK 0x0024 // 36 - DALI-2 Reset Memory Bank according to DTR0
|
||||
#define DALI_102_RESET_MEMORY_BANK 0x24 // 36 - DALI-2 Reset Memory Bank according to DTR0
|
||||
// If DTR0 = 0 then all implemented and unlocked memory banks except memory bank 0 shall be reset.
|
||||
// In all other cases, the memory bank identified by DTR0 will be reset provided it is implemented and unlocked.
|
||||
// This command may cause control gear to react improperly to commands for up to 10s.
|
||||
#define DALI_102_IDENTIFY_DEVICE 0x0025 // 37 - DALI-2 Starts the identification state of the device. Start or restart a 10s timer.
|
||||
#define DALI_102_IDENTIFY_DEVICE 0x25 // 37 - DALI-2 Starts the identification state of the device. Start or restart a 10s timer.
|
||||
// While the timer is running the device will run a procedure to enable an observer to distinguish the device from other devices in which it is not running.
|
||||
// This procedure is manufacturer-dependent.
|
||||
// Identification will be stopped immediately upon reception of any command other than Initialise, RecallMinLevel, RecallMaxLevel or IdentifyDevice.
|
||||
#define DALI_102_RESERVED38 0x0026 // 38 - [Reserved]
|
||||
#define DALI_102_RESERVED38 0x26 // 38 - [Reserved]
|
||||
// ...
|
||||
#define DALI_102_RESERVED41 0x0029 // 41 - [Reserved]
|
||||
#define DALI_102_SET_MAX_LEVEL 0x002A // 42 - Specifies the DTR data as the maximum lighting control level (maxLevel or "MAX LEVEL").
|
||||
#define DALI_102_SET_MIN_LEVEL 0x002B // 43 - Specifies the DTR data as the minimum lighting control level (minLevel or "MIN LEVEL").
|
||||
#define DALI_102_RESERVED41 0x29 // 41 - [Reserved]
|
||||
#define DALI_102_SET_MAX_LEVEL 0x2A // 42 - Specifies the DTR data as the maximum lighting control level (maxLevel or "MAX LEVEL").
|
||||
#define DALI_102_SET_MIN_LEVEL 0x2B // 43 - Specifies the DTR data as the minimum lighting control level (minLevel or "MIN LEVEL").
|
||||
// If this value is lower than the "PHYSICAL MIN LEVEL" of the ballast, then store the "PHYSICAL MIN LEVEL" as the new "MIN LEVEL".
|
||||
#define DALI_102_SET_SYSTEM_FAILURE_LEVEL 0x002C // 44 - Specifies the DTR data as the "SYSTEM FAILURE LEVEL".
|
||||
#define DALI_102_SET_POWER_ON_LEVEL 0x002D // 45 - Specifies the DTR data as the "POWER ON LEVEL".
|
||||
#define DALI_102_SET_FADE_TIME 0x002E // 46 - Specifies the DTR data as the "FADE TIME" in seconds.
|
||||
#define DALI_102_SET_SYSTEM_FAILURE_LEVEL 0x2C // 44 - Specifies the DTR data as the "SYSTEM FAILURE LEVEL".
|
||||
#define DALI_102_SET_POWER_ON_LEVEL 0x2D // 45 - Specifies the DTR data as the "POWER ON LEVEL".
|
||||
#define DALI_102_SET_FADE_TIME 0x2E // 46 - Specifies the DTR data as the "FADE TIME" in seconds.
|
||||
// Formula T=0.5(sqrt(pow(2,DTR))) seconds
|
||||
// With DTR0 in the range 1..15. If DTR0 is 0 then the extended fade time will be used.
|
||||
// The fade time specifies the time for changing the arc power level from the actual level to the requested level.
|
||||
@ -193,7 +193,7 @@
|
||||
// value 13 - 45.255 s
|
||||
// value 14 - 64.000 s
|
||||
// value 15 - 90.510 s
|
||||
#define DALI_102_SET_FADE_RATE 0x002F // 47 - Specifies the DTR data as the "FADE RATE" in steps per second.
|
||||
#define DALI_102_SET_FADE_RATE 0x2F // 47 - Specifies the DTR data as the "FADE RATE" in steps per second.
|
||||
// Formula F = 506/(sqrt(pow(2,DTR))) steps/s
|
||||
// With DTR in the range 1..15.
|
||||
// The new fade time will be used after the reception of the next arc power command.
|
||||
@ -214,7 +214,7 @@
|
||||
// value 13 - 5.591 steps/s
|
||||
// value 14 - 3.953 steps/s
|
||||
// value 15 - 2.795 steps/s
|
||||
#define DALI_102_SET_EXTENDED_FADE_TIME 0x0030 // 48 - DALI-2 Specifies the DTR data as the Extended Fade Time.
|
||||
#define DALI_102_SET_EXTENDED_FADE_TIME 0x30 // 48 - DALI-2 Specifies the DTR data as the Extended Fade Time.
|
||||
// If DTR0 > 0x4f then extendedFadeTimeBase and extendedFadeTimeMultiplier are both set to 0.
|
||||
// Otherwise, extendedFadeTimeBase will be set to DTR0[3:0] and extendedFadeTimeMultiplier will be set to DTR0[6:4].
|
||||
// If a new fade time is set during a running fade process, the running fade process is not affected.
|
||||
@ -224,28 +224,28 @@
|
||||
// 2 = Multiplier1s
|
||||
// 3 = Multiplier10s
|
||||
// 4 = Multiplier1min
|
||||
#define DALI_102_RESERVED49 0x0031 // 49 - [Reserved]
|
||||
#define DALI_102_RESERVED49 0x31 // 49 - [Reserved]
|
||||
// ...
|
||||
#define DALI_102_RESERVED63 0x003F // 63 - [Reserved]
|
||||
#define DALI_102_SET_SCENE0 0x0040 // 64 - Specifies the DTR data as Scene XXXX.
|
||||
#define DALI_102_RESERVED63 0x3F // 63 - [Reserved]
|
||||
#define DALI_102_SET_SCENE0 0x40 // 64 - Specifies the DTR data as Scene XXXX.
|
||||
// The value 255 ("MASK") removes the ballast from the scene.
|
||||
// ...
|
||||
#define DALI_102_SET_SCENE15 0x004F // 79 - Specifies the DTR data as Scene XXXX.
|
||||
#define DALI_102_REMOVE_FROM_SCENE0 0x0050 // 80 - Deletes the Scene XXXX setting.
|
||||
#define DALI_102_SET_SCENE15 0x4F // 79 - Specifies the DTR data as Scene XXXX.
|
||||
#define DALI_102_REMOVE_FROM_SCENE0 0x50 // 80 - Deletes the Scene XXXX setting.
|
||||
// This stores 255 ("MASK") in the specified scene register.
|
||||
// ...
|
||||
#define DALI_102_REMOVE_FROM_SCENE15 0x005F // 95 - Deletes the Scene XXXX setting.
|
||||
#define DALI_102_ADD_TO_GROUP0 0x0060 // 96 - Adds the ballast to Group XXXX.
|
||||
#define DALI_102_REMOVE_FROM_SCENE15 0x5F // 95 - Deletes the Scene XXXX setting.
|
||||
#define DALI_102_ADD_TO_GROUP0 0x60 // 96 - Adds the ballast to Group XXXX.
|
||||
// ...
|
||||
#define DALI_102_ADD_TO_GROUP15 0x006F // 111 - Adds the ballast to Group XXXX.
|
||||
#define DALI_102_REMOVE_FROM_GROUP0 0x0070 // 112 - Deletes the ballast from Group XXXX.
|
||||
#define DALI_102_ADD_TO_GROUP15 0x6F // 111 - Adds the ballast to Group XXXX.
|
||||
#define DALI_102_REMOVE_FROM_GROUP0 0x70 // 112 - Deletes the ballast from Group XXXX.
|
||||
// ...
|
||||
#define DALI_102_REMOVE_FROM_GROUP15 0x007F // 127 - Deletes the ballast from Group XXXX.
|
||||
#define DALI_102_SET_SHORT_ADDRESS 0x0080 // 128 - Specifies the DTR data as a Short Address.
|
||||
#define DALI_102_REMOVE_FROM_GROUP15 0x7F // 127 - Deletes the ballast from Group XXXX.
|
||||
#define DALI_102_SET_SHORT_ADDRESS 0x80 // 128 - Specifies the DTR data as a Short Address.
|
||||
// The DTR must contain either:
|
||||
// - (address<<1)|1 (i.e. 0AAAAAA1) to set a short address
|
||||
// - 255 (i.e. 11111111) to remove the short address
|
||||
#define DALI_102_ENABLE_WRITE_MEMORY 0x0081 // 129 - Allows writing of the memory bank.
|
||||
#define DALI_102_ENABLE_WRITE_MEMORY 0x81 // 129 - Allows writing of the memory bank.
|
||||
// writeEnableState shall be set to ENABLED.
|
||||
// NB there is no command to explicitly disable memory write access; any command that is not directly involved with writing to
|
||||
// memory banks will set writeEnableState to DISABLED.
|
||||
@ -258,12 +258,12 @@
|
||||
// - QueryContentDTR0
|
||||
// - QueryContentDTR1
|
||||
// - QueryContentDTR2
|
||||
#define DALI_102_RESERVED130 0x0082 // 130 - [Reserved]
|
||||
#define DALI_102_RESERVED130 0x82 // 130 - [Reserved]
|
||||
// ...
|
||||
#define DALI_102_RESERVED143 0x008F // 143 - [Reserved]
|
||||
#define DALI_102_RESERVED143 0x8F // 143 - [Reserved]
|
||||
|
||||
// Query commands - Send as second byte
|
||||
#define DALI_102_QUERY_STATUS 0x0090 // 144 - Returns "STATUS INFORMATION"
|
||||
#define DALI_102_QUERY_STATUS 0x90 // 144 - Returns "STATUS INFORMATION"
|
||||
// bit 0 - Status of the control gear. 0: OK.
|
||||
// bit 1 - Lamp failure. 0: OK.
|
||||
// bit 2 - Lamp power on. 0: OFF.
|
||||
@ -272,20 +272,20 @@
|
||||
// bit 5 - Reset status. 0: no.
|
||||
// bit 6 - Short address missing. 0: no.
|
||||
// bit 7 - Power supply fault. 0: No. A reset or a lamp power control command has been received since the last switch-on.
|
||||
#define DALI_102_QUERY_CONTROL_GEAR_PRESENT 0x0091 // 145 - Returns bit0 - Is there a ballast that can communicate?
|
||||
#define DALI_102_QUERY_LAMP_FAILURE 0x0092 // 146 - Returns bit1 - Is there a lamp problem?
|
||||
#define DALI_102_QUERY_LAMP_POWER_ON 0x0093 // 147 - Returns bit2 - Is a lamp on?
|
||||
#define DALI_102_QUERY_LIMIT_ERROR 0x0094 // 148 - Returns bit3 - Is the specified lighting control level out of the range from the minimum to the maximum values?
|
||||
#define DALI_102_QUERY_RESET_STATE 0x0095 // 149 - Returns bit5 - Is the ballast in 'RESET STATE'?
|
||||
#define DALI_102_QUERY_MISSING_SHORT_ADDRESS 0x0096 // 150 - Returns bit6 - Does the ballast not have a short address?
|
||||
#define DALI_102_QUERY_VERSION_NUMBER 0x0097 // 151 - What is the corresponding IEC standard number?
|
||||
#define DALI_102_QUERY_CONTROL_GEAR_PRESENT 0x91 // 145 - Returns bit0 - Is there a ballast that can communicate?
|
||||
#define DALI_102_QUERY_LAMP_FAILURE 0x92 // 146 - Returns bit1 - Is there a lamp problem?
|
||||
#define DALI_102_QUERY_LAMP_POWER_ON 0x93 // 147 - Returns bit2 - Is a lamp on?
|
||||
#define DALI_102_QUERY_LIMIT_ERROR 0x94 // 148 - Returns bit3 - Is the specified lighting control level out of the range from the minimum to the maximum values?
|
||||
#define DALI_102_QUERY_RESET_STATE 0x95 // 149 - Returns bit5 - Is the ballast in 'RESET STATE'?
|
||||
#define DALI_102_QUERY_MISSING_SHORT_ADDRESS 0x96 // 150 - Returns bit6 - Does the ballast not have a short address?
|
||||
#define DALI_102_QUERY_VERSION_NUMBER 0x97 // 151 - What is the corresponding IEC standard number?
|
||||
// The high four bits of the answer represent the version number of the standard.
|
||||
// IEC-60929 is version number 0; the 2009 version of IEC-62386 is version number 1.
|
||||
// As of the 2014 version of IEC-62386, the answer shall be the content of memory bank 0 location 0x16.
|
||||
// bit 0..3 - nMinorVersion
|
||||
// bit 4..7 - nMajorVersion
|
||||
#define DALI_102_QUERY_CONTENT_DTR0 0x0098 // 152 - What is the DTR content?
|
||||
#define DALI_102_QUERY_DEVICE_TYPE 0x0099 // 153 - What is the device type?
|
||||
#define DALI_102_QUERY_CONTENT_DTR0 0x98 // 152 - What is the DTR content?
|
||||
#define DALI_102_QUERY_DEVICE_TYPE 0x99 // 153 - What is the device type?
|
||||
// The device type affects which application extended commands the device will respond to.
|
||||
// XXX this is updated for IEC 62386-102 and interacts with QueryNextDeviceType. In this case:
|
||||
// - If the device does not implement any part 2xx device type then the response will be 254;
|
||||
@ -315,12 +315,12 @@
|
||||
// value 53 - Part 254: Extended information for DALI control gears for emergency lighting
|
||||
// value 254 - None or end
|
||||
// value 255 - Multiple
|
||||
#define DALI_102_QUERY_PHYSICAL_MINIMUM_LEVEL 0x009A // 154 - Return the physical minimum level for this device.
|
||||
#define DALI_102_QUERY_POWER_FAILURE 0x009B // 155 - Ask whether the device has not received a "RESET" or arc power control command since the last power-on.
|
||||
#define DALI_102_QUERY_CONTENT_DTR1 0x009C // 156 - Return the contents of DTR1.
|
||||
#define DALI_102_QUERY_CONTENT_DTR2 0x009D // 157 - Return the contents of DTR2.
|
||||
#define DALI_102_QUERY_OPERATING_MODE 0x009E // 158 - DALI-2 What is the Operating Mode?
|
||||
#define DALI_102_QUERY_LIGHT_SOURCE_TYPE 0x009F // 159 - DALI-2 What is the Light source type (E_DALILightSourceType)
|
||||
#define DALI_102_QUERY_PHYSICAL_MINIMUM_LEVEL 0x9A // 154 - Return the physical minimum level for this device.
|
||||
#define DALI_102_QUERY_POWER_FAILURE 0x9B // 155 - Ask whether the device has not received a "RESET" or arc power control command since the last power-on.
|
||||
#define DALI_102_QUERY_CONTENT_DTR1 0x9C // 156 - Return the contents of DTR1.
|
||||
#define DALI_102_QUERY_CONTENT_DTR2 0x9D // 157 - Return the contents of DTR2.
|
||||
#define DALI_102_QUERY_OPERATING_MODE 0x9E // 158 - DALI-2 What is the Operating Mode?
|
||||
#define DALI_102_QUERY_LIGHT_SOURCE_TYPE 0x9F // 159 - DALI-2 What is the Light source type (E_DALILightSourceType)
|
||||
// "unknown" will typically be used in case of signal conversion, for example to 1-10v dimming
|
||||
// "none" will be used where no light source is connected, for example a relay
|
||||
// When the response is "multiple" then the light source types shall be placed into DTR0, DTR1 and DTR2.
|
||||
@ -335,50 +335,50 @@
|
||||
// value 253 = Unknown (typicaly signal conversion like 1-10V dimming)
|
||||
// value 254 = NoLightSource
|
||||
// value 255 = Multiple (Type in DTR0, DTR1 and DTR2 (= none if two types, = 255 if > 3))
|
||||
#define DALI_102_QUERY_ACTUAL_LEVEL 0x00A0 // 160 - What is the "ACTUAL LEVEL" (the current lighting control level)?
|
||||
#define DALI_102_QUERY_ACTUAL_LEVEL 0xA0 // 160 - What is the "ACTUAL LEVEL" (the current lighting control level)?
|
||||
// During preheating and if a lamp error occurs the answer will be 0xff ("MASK").
|
||||
#define DALI_102_QUERY_MAX_LEVEL 0x00A1 // 161 - What is the maximum lighting "MAX LEVEL" control level?
|
||||
#define DALI_102_QUERY_MIN_LEVEL 0x00A2 // 162 - What is the minimum lighting "MIN LEVEL" control level?
|
||||
#define DALI_102_QUERY_POWER_ON_LEVEL 0x00A3 // 163 - What is the "POWER ON LEVEL" (the lighting control level when the power is turned on)?
|
||||
#define DALI_102_QUERY_SYSTEM_FAILURE_LEVEL 0x00A4 // 164 - What is the "SYSTEM FAILURE LEVEL" (the lighting control level when a failure occurs)?
|
||||
#define DALI_102_QUERY_FADE_TIME_FADE_RATE 0x00A5 // 165 - What are the Fade time and Fade rate? (see 47 and 48)
|
||||
#define DALI_102_QUERY_MAX_LEVEL 0xA1 // 161 - What is the maximum lighting "MAX LEVEL" control level?
|
||||
#define DALI_102_QUERY_MIN_LEVEL 0xA2 // 162 - What is the minimum lighting "MIN LEVEL" control level?
|
||||
#define DALI_102_QUERY_POWER_ON_LEVEL 0xA3 // 163 - What is the "POWER ON LEVEL" (the lighting control level when the power is turned on)?
|
||||
#define DALI_102_QUERY_SYSTEM_FAILURE_LEVEL 0xA4 // 164 - What is the "SYSTEM FAILURE LEVEL" (the lighting control level when a failure occurs)?
|
||||
#define DALI_102_QUERY_FADE_TIME_FADE_RATE 0xA5 // 165 - What are the Fade time and Fade rate? (see 47 and 48)
|
||||
// The fade time set by "DALI_102_SET_FADE_TIME" is in the upper four bits of the response.
|
||||
// The fade rate set by "DALI_102_SET_FADE_RATE" is in the lower four bits of the response.
|
||||
#define DALI_102_QUERY_MANUFACTURER_SPECIFIC_MODE 0x00A6 // 166 - DALI-2 Query Manufacturer Specific Mode
|
||||
#define DALI_102_QUERY_MANUFACTURER_SPECIFIC_MODE 0xA6 // 166 - DALI-2 Query Manufacturer Specific Mode
|
||||
// The answer shall be YES when operatingMode is in the range 0x80..0xff and NO otherwise.
|
||||
#define DALI_102_QUERY_NEXT_DEVICE_TYPE 0x00A7 // 167 - DALI-2 What is the next Device Type?
|
||||
#define DALI_102_QUERY_NEXT_DEVICE_TYPE 0xA7 // 167 - DALI-2 What is the next Device Type?
|
||||
// If directly preceded by DALI_102_QUERY_DEVICE_TYPE and more than one device type is supported, returns the first and lowest device type number.
|
||||
// If directly preceded by DALI_102_QUERY_NEXT_DEVICE_TYPE and not all device types have been reported, returns the next lowest device type number.
|
||||
// If directly preceded by DALI_102_QUERY_NEXT_DEVICE_TYPE and all device types have been reported, returns 254.
|
||||
// In all other cases returns NO (no response).
|
||||
// Multi-master transmitters shall send the sequence DALI_102_QUERY_DEVICE_TYPE,DALI_102_QUERY_NEXT_DEVICE_TYPE,... as a transaction.
|
||||
#define DALI_102_QUERY_EXTENDED_FADE_TIME 0x00A8 // 168 - DALI-2 What is the Extended Fade Time?
|
||||
#define DALI_102_QUERY_EXTENDED_FADE_TIME 0xA8 // 168 - DALI-2 What is the Extended Fade Time?
|
||||
// bit 0..3 - value 0..15 (E_DALIExtendedFadeTimeBase)
|
||||
// bit 4..7 - 0 = Disabled (E_DALIExtendeFadeTimeMultiplier)
|
||||
// 1 = Multiplier100ms
|
||||
// 2 = Multiplier1s
|
||||
// 3 = Multiplier10s
|
||||
// 4 = Multiplier1min
|
||||
#define DALI_102_QUERY_CONTROL_GEAR_FAILURE 0x00A9 // 169 - DALI-2 Does a ballast have the abnormality (0 = No, 1 = Yes)?
|
||||
#define DALI_102_QUERY_CONTROL_GEAR_FAILURE 0xA9 // 169 - DALI-2 Does a ballast have the abnormality (0 = No, 1 = Yes)?
|
||||
// The answer shall be YES if controlGearFailure is TRUE and NO otherwise.
|
||||
#define DALI_102_RESERVED170 0x00AA // 170 - [Reserved]
|
||||
#define DALI_102_RESERVED170 0xAA // 170 - [Reserved]
|
||||
// ...
|
||||
#define DALI_102_RESERVED175 0x00AF // 175 - [Reserved]
|
||||
#define DALI_102_QUERY_SCENE0_LEVEL 0x00B0 // 176 - Return the level set for scene 0, or 255 ("MASK") if the device is not part of the scene.
|
||||
#define DALI_102_RESERVED175 0xAF // 175 - [Reserved]
|
||||
#define DALI_102_QUERY_SCENE0_LEVEL 0xB0 // 176 - Return the level set for scene 0, or 255 ("MASK") if the device is not part of the scene.
|
||||
// ...
|
||||
#define DALI_102_QUERY_SCENE15_LEVEL 0x00BF // 191 - Return the level set for scene 15, or 255 ("MASK") if the device is not part of the scene.
|
||||
#define DALI_102_QUERY_GROUPS_0_7 0x00C0 // 192 - Return the device membership of groups 0-7 with group 0 in the least-significant bit of the response.
|
||||
#define DALI_102_QUERY_GROUPS_8_15 0x00C1 // 193 - Return the device membership of groups 8-15 with group 8 in the least-significant bit of the response.
|
||||
#define DALI_102_QUERY_RANDOM_ADDRESS_H 0x00C2 // 194 - What are the high 8 bits of the random address?
|
||||
#define DALI_102_QUERY_RANDOM_ADDRESS_M 0x00C3 // 195 - What are the middle 8 bits of the random address?
|
||||
#define DALI_102_QUERY_RANDOM_ADDRESS_L 0x00C4 // 196 - What are the low 8 bits of the random address?
|
||||
#define DALI_102_READ_MEMORY_LOCATION 0x00C5 // 197 - What is the memory location content (Uses DTR0 and DTR1)
|
||||
#define DALI_102_QUERY_SCENE15_LEVEL 0xBF // 191 - Return the level set for scene 15, or 255 ("MASK") if the device is not part of the scene.
|
||||
#define DALI_102_QUERY_GROUPS_0_7 0xC0 // 192 - Return the device membership of groups 0-7 with group 0 in the least-significant bit of the response.
|
||||
#define DALI_102_QUERY_GROUPS_8_15 0xC1 // 193 - Return the device membership of groups 8-15 with group 8 in the least-significant bit of the response.
|
||||
#define DALI_102_QUERY_RANDOM_ADDRESS_H 0xC2 // 194 - What are the high 8 bits of the random address?
|
||||
#define DALI_102_QUERY_RANDOM_ADDRESS_M 0xC3 // 195 - What are the middle 8 bits of the random address?
|
||||
#define DALI_102_QUERY_RANDOM_ADDRESS_L 0xC4 // 196 - What are the low 8 bits of the random address?
|
||||
#define DALI_102_READ_MEMORY_LOCATION 0xC5 // 197 - What is the memory location content (Uses DTR0 and DTR1)
|
||||
// The query is ignored if the addressed memory bank is not implemented.
|
||||
// If executed, the answer will be the content of the memory location identified by DTR0 in bank DTR1.
|
||||
// If the addressed location is below 0xff, then DTR0 is incremented by 1.
|
||||
#define DALI_102_RESERVED198 0x00C6 // 198 - [Reserved]
|
||||
#define DALI_102_RESERVED198 0xC6 // 198 - [Reserved]
|
||||
// ...
|
||||
#define DALI_102_RESERVED223 0x00DF // 223 - [Reserved]
|
||||
#define DALI_102_RESERVED223 0xDF // 223 - [Reserved]
|
||||
|
||||
/*-------------------------------------------------------------------------------------------*\
|
||||
* DALI Application extended commands for IEC62386 part 201 = DT0 - Send as second byte
|
||||
@ -386,7 +386,7 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_201_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_201_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
@ -397,7 +397,7 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_202_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_202_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
@ -408,7 +408,7 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_203_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_203_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
@ -419,7 +419,7 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_204_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_204_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
@ -430,33 +430,33 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended configuration commands - Send as second byte with repeat
|
||||
#define DALI_205_SET_REFERENCE_SYSTEM_POWER 0x00E0 // 224 - Reference System Power
|
||||
#define DALI_205_REFERENCE_SYSTEM_POWER 0xE0 // 224 - Reference System Power
|
||||
// The control gear shall measure and store system power levels in order to detect load increase or load decrease.
|
||||
// The measurement may take up to 15 minutes.
|
||||
// Measured power levels will be stored in non-volatile memory, Commands received during the measuring period will be ignored except query commands and Terminate.
|
||||
// The process will be aborted if DALI_102_TERMINATE is received.
|
||||
#define DALI_205_SELECT_DIMMING_CURVE 0x00E1 // 225 - Select Dimming Curve
|
||||
#define DALI_205_SELECT_DIMMING_CURVE 0xE1 // 225 - Select Dimming Curve
|
||||
// If DTR0 is 0 then selects the standard logarithmic curve
|
||||
// If DTR0 is 1 then selects a linear dimming curve
|
||||
// Other values of DTR0 are reserved and will not change the dimming curve.
|
||||
// The setting is stored in non-volatile memory and is not cleared by the Reset command.
|
||||
#define DALI_205_RESERVED226 0x00E2 // 226 - [Reserved]
|
||||
#define DALI_205_RESERVED226 0xE2 // 226 - [Reserved]
|
||||
// ...
|
||||
#define DALI_205_RESERVED237 0x00ED // 237 - [Reserved]
|
||||
#define DALI_205_RESERVED237 0xED // 237 - [Reserved]
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_205_QUERY_DIMMING_CURVE 0x00EE // 238 - Returns Dimming curve in use
|
||||
#define DALI_205_QUERY_DIMMING_CURVE 0xEE // 238 - Returns Dimming curve in use
|
||||
// value 0 = Standard - Standard logarithmic dimming curve
|
||||
// value 1 = Linear - Linear dimming curve
|
||||
// value 255 = Unknown
|
||||
#define DALI_205_QUERY_DIMMER_STATUS 0x00EF // 239 - Returns dimmer status
|
||||
#define DALI_205_QUERY_DIMMER_STATUS 0xEF // 239 - Returns dimmer status
|
||||
// bit 0 - leading edge mode running
|
||||
// bit 1 - trailing edge mode running
|
||||
// bit 2 - reference measurement running
|
||||
// bit 3 - None
|
||||
// bit 4 - non-logarithmic dimming curve active
|
||||
// bit 5..7 - Not used
|
||||
#define DALI_205_QUERY_FEATURES 0x00F0 // 240 - Return feature bytes. There are three bytes of feature information.
|
||||
#define DALI_205_QUERY_FEATURES 0xF0 // 240 - Return feature bytes. There are three bytes of feature information.
|
||||
// Byte 1 is the reply to this command.
|
||||
// bit 0 - load over-current shutdown can be queried
|
||||
// bit 1 - open circuit detection can be queried
|
||||
@ -485,7 +485,7 @@
|
||||
// bit 3 - non-logarithmic dimming curve can be selected
|
||||
// bit 4..6 - None
|
||||
// bit 7 - load unsuitable can be queried
|
||||
#define DALI_205_QUERY_FAILURE_STATUS 0x00F1 // 241 - Returns failure status. There are two bytes of failure information.
|
||||
#define DALI_205_QUERY_FAILURE_STATUS 0xF1 // 241 - Returns failure status. There are two bytes of failure information.
|
||||
// Responds with byte 1 of the failure status information, and transfers byte 2 of the failure status into DTR1.
|
||||
// Failure states which cause output level reduction shall only be reset by re-powering the control gear or by any command that causes the output to turn off.
|
||||
// Failure states which cause shutdown shall only be reset by re-powering the control gear or using an optional reset switch on the control gear.
|
||||
@ -505,40 +505,40 @@
|
||||
// bit 3 - load voltage out of limits
|
||||
// bit 4 - load current overload with output level reduction
|
||||
// bit 5..7 - Not used
|
||||
#define DALI_205_QUERY_DIMMER_TEMPERATURE 0x00F2 // 242 - Returns the temperature of the dimmer with 1 degC resolution.
|
||||
#define DALI_205_QUERY_DIMMER_TEMPERATURE 0xF2 // 242 - Returns the temperature of the dimmer with 1 degC resolution.
|
||||
// Values of 0 to 254 represent temperatures of -40C to +214C.
|
||||
// Below -40C, 0 is returned. Above 214C, 254 is returned. A value of 255 means "unknown".
|
||||
// Control gear without this feature shall not react.
|
||||
#define DALI_205_QUERY_RMS_SUPPLY_VOLTAGE 0x00F3 // 243 - Returns the measured supply voltage.
|
||||
#define DALI_205_QUERY_RMS_SUPPLY_VOLTAGE 0xF3 // 243 - Returns the measured supply voltage.
|
||||
// Values of 0 to 254 represent 0V to 508V RMS.
|
||||
// Voltages above 508V RMS shall be returned as 254. A value of 255 means "unknown".
|
||||
// Control gear without this feature shall not react.
|
||||
#define DALI_205_QUERY_SUPPLY_FREQUENCY 0x00F4 // 244 - Returns the supply frequency with 0.5Hz resolution.
|
||||
#define DALI_205_QUERY_SUPPLY_FREQUENCY 0xF4 // 244 - Returns the supply frequency with 0.5Hz resolution.
|
||||
// Values of 0 to 254 represent 0Hz to 127Hz.
|
||||
// Frequencies above 127Hz are returned as 254. A value of 255 means "unknown".
|
||||
// Control gear without this feature shall not react.
|
||||
#define DALI_205_QUERY_RMS_LOAD_VOLTAGE 0x00F5 // 245 - Returns the measured load voltage.
|
||||
#define DALI_205_QUERY_RMS_LOAD_VOLTAGE 0xF5 // 245 - Returns the measured load voltage.
|
||||
// Values of 0 to 254 represent 0V to 508V RMS.
|
||||
// Voltages above 508V RMS shall be returned as 254. A value of 255 means "unknown".
|
||||
// Control gear without this feature shall not react.
|
||||
#define DALI_205_QUERY_RMS_LOAD_CURRENT 0x00F6 // 246 - Returns the measured load current as a percentage of the rated load current given by the answer to QueryLoadRating, with 0.5% resolution.
|
||||
#define DALI_205_QUERY_RMS_LOAD_CURRENT 0xF6 // 246 - Returns the measured load current as a percentage of the rated load current given by the answer to QueryLoadRating, with 0.5% resolution.
|
||||
// Values of 0 to 254 represent 0% to 127%.
|
||||
// Higher currents shall be returned as 254. A value of 255 means "unknown".
|
||||
// Control gear without this feature shall not react.
|
||||
#define DALI_205_QUERY_REAL_LOAD_POWER 0x00F7 // 247 - Returns the high byte of the real power supplied to the load. The low byte is transferred to DTR0.
|
||||
#define DALI_205_QUERY_REAL_LOAD_POWER 0xF7 // 247 - Returns the high byte of the real power supplied to the load. The low byte is transferred to DTR0.
|
||||
// Values of 0 to 65534 represent powers from 0W to 16383.5W with a resolution of 0.25W.
|
||||
// Powers above this range are returned as 65534. A value of 65535 means "unknown".
|
||||
// Control gear without this feature shall not react.
|
||||
#define DALI_205_QUERY_LOAD_RATING 0x00F8 // 248 - Returns the maximum load current rating with 150mA resolution.
|
||||
#define DALI_205_QUERY_LOAD_RATING 0xF8 // 248 - Returns the maximum load current rating with 150mA resolution.
|
||||
// Values of 0 to 254 represent 0A to 38.1A RMS.
|
||||
// Currents above 38.1A shall be returned as 254. A value of 255 means "unknown".
|
||||
// Control gear without this feature shall not react.
|
||||
#define DALI_205_QUERY_REFERENCE_RUNNING 0x00F9 // 249 - Asks if the ReferenceSystemPower measurement is running.
|
||||
#define DALI_205_QUERY_REFERENCE_FAILED 0x00FA // 250 - Asks if the reference measurement started by ReferenceSystemPower failed.
|
||||
#define DALI_205_RESERVED251 0x00FB // 251 - [Reserved]
|
||||
#define DALI_205_QUERY_REFERENCE_RUNNING 0xF9 // 249 - Asks if the ReferenceSystemPower measurement is running.
|
||||
#define DALI_205_QUERY_REFERENCE_FAILED 0xFA // 250 - Asks if the reference measurement started by ReferenceSystemPower failed.
|
||||
#define DALI_205_RESERVED251 0xFB // 251 - [Reserved]
|
||||
// ...
|
||||
#define DALI_205_RESERVED254 0x00FE // 254 - [Reserved]
|
||||
#define DALI_205_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_205_RESERVED254 0xFE // 254 - [Reserved]
|
||||
#define DALI_205_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
@ -549,7 +549,7 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_206_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_206_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
@ -574,37 +574,37 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended configuration commands - Send as second byte with repeat
|
||||
#define DALI_207_REFERENCE_SYSTEM_POWER 0x00E0 // 224 - The DALI control gear measures and stores the performance level of the system, in order to detect load increase and decrease.
|
||||
#define DALI_207_ENABLE_CURRENT_PROTECTOR 0x00E1 // 225 - Enables the current protection.
|
||||
#define DALI_207_DISABLE_CURRENT_PROTECTOR 0x00E2 // 226 - Disables the current protection.
|
||||
#define DALI_207_SELECT_DIMMING_CURVE 0x00E3 // 227 - Selects Dimming curve (see 238).
|
||||
#define DALI_207_REFERENCE_SYSTEM_POWER 0xE0 // 224 - The DALI control gear measures and stores the performance level of the system, in order to detect load increase and decrease.
|
||||
#define DALI_207_ENABLE_CURRENT_PROTECTOR 0xE1 // 225 - Enables the current protection (deleted 2018).
|
||||
#define DALI_207_DISABLE_CURRENT_PROTECTOR 0xE2 // 226 - Disables the current protection (deleted 2018).
|
||||
#define DALI_207_SELECT_DIMMING_CURVE 0xE3 // 227 - Selects Dimming curve (see 238).
|
||||
// If DTR0 is 0 then selects the standard logarithmic curve
|
||||
// If DTR0 is 1 then selects a linear dimming curve
|
||||
// Other values of DTR0 are reserved and will not change the dimming curve.
|
||||
// The setting is stored in non-volatile memory and is not cleared by the Reset command.
|
||||
#define DALI_207_SET_FAST_FADE_TIME 0x00E4 // 228 - Sets the DTR0 of the data as Fast Fade Time (see 253).
|
||||
#define DALI_207_RESERVED229 0x00E5 // 229 - [Reserved]
|
||||
#define DALI_207_SET_FAST_FADE_TIME 0xE4 // 228 - Sets the DTR0 of the data as Fast Fade Time (see 253).
|
||||
#define DALI_207_RESERVED229 0xE5 // 229 - [Reserved]
|
||||
// ...
|
||||
#define DALI_207_RESERVED236 0x00EC // 236 - [Reserved]
|
||||
#define DALI_207_RESERVED236 0xEC // 236 - [Reserved]
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_207_QUERY_GEAR_TYPE 0x00ED // 237 - Returns ‘GEAR TYPE’
|
||||
#define DALI_207_QUERY_GEAR_TYPE 0xED // 237 - Returns ‘GEAR TYPE’
|
||||
// bit 0 - LED power supply integrated
|
||||
// bit 1 - LED module integrated
|
||||
// bit 2 - AC supply possible
|
||||
// bit 3 - DC supply possible
|
||||
// bit 4..7 - Reserve
|
||||
#define DALI_207_QUERY_DIMMING_CURVE 0x00EE // 238 - Returns Dimming curve in use (E_DALIDimmingCurve)
|
||||
#define DALI_207_QUERY_DIMMING_CURVE 0xEE // 238 - Returns Dimming curve in use (E_DALIDimmingCurve)
|
||||
// value 0 = Standard - Standard logarithmic dimming curve
|
||||
// value 1 = Linear - Linear dimming curve
|
||||
// value 255 = Unknown
|
||||
#define DALI_207_QUERY_POSSIBLE_OPERATING_MODE 0x00EF // 239 - Returns ‘POSSIBLE OPERATING MODE’
|
||||
#define DALI_207_QUERY_POSSIBLE_OPERATING_MODE 0xEF // 239 - Returns ‘POSSIBLE OPERATING MODE’ (deleted 2018)
|
||||
// bit 0 - PWM mode possible
|
||||
// bit 1 - AM mode possible
|
||||
// bit 2 - Output is current controlled
|
||||
// bit 3 - High current pulse mode
|
||||
// bit 4..7 - Reserve
|
||||
#define DALI_207_QUERY_FEATURES 0x00F0 // 240 - Returns ‘FEATURES’
|
||||
#define DALI_207_QUERY_FEATURES 0xF0 // 240 - Returns ‘FEATURES’
|
||||
// bit 0 - Short circuit detection can be queried
|
||||
// bit 1 - Open circuit detection can be queried
|
||||
// bit 2 - Detection of the load decrease can be queried
|
||||
@ -613,7 +613,7 @@
|
||||
// bit 5 - Thermal shutdown can be queried
|
||||
// bit 6 - Reduction of the output level due to thermal overload can be queried
|
||||
// bit 7 - Physical selection supported
|
||||
#define DALI_207_QUERY_FAILURE_STATUS 0x00F1 // 241 - Returns ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_FAILURE_STATUS 0xF1 // 241 - Returns ‘FAILURE STATUS’
|
||||
// bit 0 - Short circuit
|
||||
// bit 1 - Open circuit
|
||||
// bit 2 - Load decrease
|
||||
@ -622,24 +622,24 @@
|
||||
// bit 5 - Thermal shutdown
|
||||
// bit 6 - Thermal overload with output level reduction
|
||||
// bit 7 - Reference measurement failed
|
||||
#define DALI_207_QUERY_SHORT_CIRCUIT 0x00F2 // 242 - Returns bit0 short circuit of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_OPEN_CIRCUIT 0x00F3 // 243 - Returns bit1 open circuit of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_LOAD_DECREASE 0x00F4 // 244 - Returns bit2 load decrease of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_LOAD_INDREASE 0x00F5 // 245 - Returns bit3 load increase of‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_CURRENT_PROTECTOR_ACTIVE 0x00F6 // 246 - Returns bit4 current protector active of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_THERMAL_SHUTDOWN 0x00F7 // 247 - Returns bit5 thermal shut down of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_THERMAL_OVERLOAD 0x00F8 // 248 - Returns bit6 thermal overload with light level reduction of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_REFERENCE_RUNNING 0x00F9 // 249 - Returns whether Reference System Power is in operation.
|
||||
#define DALI_207_QUERY_REFERENCE_MEASURMENT_FAILED 0x00FA // 250 - Returns bit7 reference measurement failed of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_CURRENT_PROTECTOR_ENABLE 0x00FB // 251 - Returns state of Curent protector
|
||||
#define DALI_207_QUERY_OPERATING_MODE2 0x00FC // 252 - Returns ‘OPERATING MODE’
|
||||
#define DALI_207_QUERY_SHORT_CIRCUIT 0xF2 // 242 - Returns bit0 short circuit of ‘FAILURE STATUS’ (deleted 2018)
|
||||
#define DALI_207_QUERY_OPEN_CIRCUIT 0xF3 // 243 - Returns bit1 open circuit of ‘FAILURE STATUS’ (deleted 2018)
|
||||
#define DALI_207_QUERY_LOAD_DECREASE 0xF4 // 244 - Returns bit2 load decrease of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_LOAD_INDREASE 0xF5 // 245 - Returns bit3 load increase of‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_CURRENT_PROTECTOR_ACTIVE 0xF6 // 246 - Returns bit4 current protector active of ‘FAILURE STATUS’ (deleted 2018)
|
||||
#define DALI_207_QUERY_THERMAL_SHUTDOWN 0xF7 // 247 - Returns bit5 thermal shut down of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_THERMAL_OVERLOAD 0xF8 // 248 - Returns bit6 thermal overload with light level reduction of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_REFERENCE_RUNNING 0xF9 // 249 - Returns whether Reference System Power is in operation.
|
||||
#define DALI_207_QUERY_REFERENCE_MEASURMENT_FAILED 0xFA // 250 - Returns bit7 reference measurement failed of ‘FAILURE STATUS’
|
||||
#define DALI_207_QUERY_CURRENT_PROTECTOR_ENABLE 0xFB // 251 - Returns state of Curent protector (deleted 2018)
|
||||
#define DALI_207_QUERY_OPERATING_MODE2 0xFC // 252 - Returns ‘OPERATING MODE’ (deleted 2018)
|
||||
// bit 0 - PWM mode active
|
||||
// bit 1 - AM mode active
|
||||
// bit 2 - Output is current controlled
|
||||
// bit 3 - High current pulse mode is active
|
||||
// bit 4 - non-logarithmic dimming curve active
|
||||
// bit 5..7 - Reserve
|
||||
#define DALI_207_QUERY_FAST_FADE_TIME 0x00FD // 253 - Returns set Fast fade time (E_DALIFastFadeTime)
|
||||
#define DALI_207_QUERY_FAST_FADE_TIME 0xFD // 253 - Returns set Fast fade time (E_DALIFastFadeTime)
|
||||
// value 0 = Disabled
|
||||
// value 4 = T100ms
|
||||
// value 8 = T200ms
|
||||
@ -650,8 +650,8 @@
|
||||
// value 24 = T600ms
|
||||
// value 27 = T700ms
|
||||
// value 255 = Unknown
|
||||
#define DALI_207_QUERY_MIN_FAST_FADE_TIME 0x00FE // 254 - Returns set Minimum fast fade time (variable minFastFadeTime)
|
||||
#define DALI_207_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_207_QUERY_MIN_FAST_FADE_TIME 0xFE // 254 - Returns set Minimum fast fade time (variable minFastFadeTime)
|
||||
#define DALI_207_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
@ -662,7 +662,7 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_208_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_208_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
@ -675,56 +675,56 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended control commands - Send as second byte with repeat
|
||||
#define DALI_209_SET_TEMPORARY_X_COORDINATE 0x00E0 // 224 - Set temporary x-COORDINATE (Uses DTR0 (LSB) and DTR1 (MSB))
|
||||
#define DALI_209_SET_TEMPORARY_X_COORDINATE 0xE0 // 224 - Set temporary x-COORDINATE (Uses DTR0 (LSB) and DTR1 (MSB))
|
||||
// The value is expressed in units of 1/65536. The maximum x-COORDINATE value is 0,99997
|
||||
#define DALI_209_SET_TEMPORARY_Y_COORDINATE 0x00E1 // 225 - Set temporary y-COORDINATE (Uses DTR0 (LSB) and DTR1 (MSB))
|
||||
#define DALI_209_SET_TEMPORARY_Y_COORDINATE 0xE1 // 225 - Set temporary y-COORDINATE (Uses DTR0 (LSB) and DTR1 (MSB))
|
||||
// The value is expressed in units of 1/65536. The maximum y-COORDINATE value is 0,99997.
|
||||
#define DALI_209_ACTIVATE 0x00E2 // 226 - Transfer buffered values of temporary registers to the lamp.
|
||||
#define DALI_209_ACTIVATE 0xE2 // 226 - Transfer buffered values of temporary registers to the lamp.
|
||||
// It ends a running cross-fade and starts a new cross-fade for the respective color/color temperature.
|
||||
#define DALI_209_X_COORDINATE_STEP_UP 0x00E3 // 227 - The x-COORDINATE shall be set 256 steps higher (256/65536) immediately without fading.
|
||||
#define DALI_209_X_COORDINATE_STEP_UP 0xE3 // 227 - The x-COORDINATE shall be set 256 steps higher (256/65536) immediately without fading.
|
||||
// This command shall only be executed when ‘Colour type xy-coordinate active’ bit, bit 4 of the ‘COLOUR STATUS’, is set.
|
||||
// If the new colour value does not correspond to a colour attainable by the control gear, this shall be indicated by
|
||||
// the ‘xy-coordinate colour point out of range’ bit, bit 0 of the ‘COLOUR STATUS’.
|
||||
#define DALI_209_X_COORDINATE_STEP_DOWN 0x00E4 // 228 - The x-COORDINATE shall be set 256 steps lower (256/65536) immediately without fading.
|
||||
#define DALI_209_X_COORDINATE_STEP_DOWN 0xE4 // 228 - The x-COORDINATE shall be set 256 steps lower (256/65536) immediately without fading.
|
||||
// This command shall only be executed when ‘Colour type xy-coordinate active’ bit, bit 4 of the ‘COLOUR STATUS’, is set.
|
||||
// If the new colour value does not correspond to a colour attainable by the control gear, this shall be indicated by
|
||||
// the ‘xy-coordinate colour point out of range’ bit, bit 0 of the ‘COLOUR STATUS’.
|
||||
#define DALI_209_Y_COORDINATE_STEP_UP 0x00E5 // 229 - The y-COORDINATE shall be set 256 steps higher (256/65536) immediately without fading.
|
||||
#define DALI_209_Y_COORDINATE_STEP_UP 0xE5 // 229 - The y-COORDINATE shall be set 256 steps higher (256/65536) immediately without fading.
|
||||
// This command shall only be executed when ‘Colour type xy-coordinate active’ bit, bit 4 of the ‘COLOUR STATUS’, is set.
|
||||
// If the new colour value does not correspond to a colour attainable by the control gear, this shall be indicated by
|
||||
// the ‘xy-coordinate colour point out of range’ bit, bit 0 of the ‘COLOUR STATUS’.
|
||||
#define DALI_209_Y_COORDINATE_STEP_DOWN 0x00E6 // 230 - The y-COORDINATE shall be set 256 steps lower (256/65536) immediately without fading.
|
||||
#define DALI_209_Y_COORDINATE_STEP_DOWN 0xE6 // 230 - The y-COORDINATE shall be set 256 steps lower (256/65536) immediately without fading.
|
||||
// This command shall only be executed when ‘Colour type xy-coordinate active’ bit, bit 4 of the ‘COLOUR STATUS’, is set.
|
||||
// If the new colour value does not correspond to a colour attainable by the control gear, this shall be indicated by
|
||||
// the ‘xy-coordinate colour point out of range’ bit, bit 0 of the ‘COLOUR STATUS’.
|
||||
#define DALI_209_SET_TEMPORARY_COLOUR_TEMP_TC 0x00E7 // 231 - Set temporary colour temperature Tc (Uses DTR0 (LSB) and DTR1 (MSB))
|
||||
#define DALI_209_SET_TEMPORARY_COLOUR_TEMP_TC 0xE7 // 231 - Set temporary colour temperature Tc (Uses DTR0 (LSB) and DTR1 (MSB))
|
||||
// The value is expressed in units of 1 Mirek.
|
||||
// A value of 0 for Tc shall be ignored and therefore not stored in memory.
|
||||
// NOTE Colour temperature TC can vary from 1 Mirek (1 000 000 K) to 65 534 Mirek (15,26 K).
|
||||
#define DALI_209_COLOUR_TEMP_TC_STEP_COOLER 0x00E8 // 232 - The ‘COLOUR TEMPERATURE TC’ shall be set 1 Mirek lower immediately without fading.
|
||||
#define DALI_209_COLOUR_TEMP_TC_STEP_COOLER 0xE8 // 232 - The ‘COLOUR TEMPERATURE TC’ shall be set 1 Mirek lower immediately without fading.
|
||||
// This command shall only be executed when ‘Colour type colour temperature TC active’ bit, bit 5 of the ‘COLOUR STATUS’ is set.
|
||||
// No change shall occur if ‘COLOUR TEMPERATURE TC’ is already at ‘COLOUR TEMPERATURE TC COOLEST’.
|
||||
// If the new colour value does not correspond to a colour temperature attainable by the control gear, this shall be indicated by
|
||||
// the ‘Colour temperature TC out of range’ bit, bit 1 of the ‘COLOUR STATUS’.
|
||||
#define DALI_209_COLOUR_TEMP_TC_STEP_WARMER 0x00E9 // 233 - The ‘COLOUR TEMPERATURE TC’ shall be set 1 Mirek higher immediately without fading.
|
||||
#define DALI_209_COLOUR_TEMP_TC_STEP_WARMER 0xE9 // 233 - The ‘COLOUR TEMPERATURE TC’ shall be set 1 Mirek higher immediately without fading.
|
||||
// This command shall only be executed when ‘Colour type colour temperature TC active’ bit, bit 5 of the ‘COLOUR STATUS’ is set.
|
||||
// No change shall occur if ‘COLOUR TEMPERATURE TC’ is already at ‘COLOUR TEMPERATURE TC WARMEST’.
|
||||
// If the new colour value does not correspond to a colour temperature attainable by the control gear, this shall be indicated by
|
||||
// the ‘Colour temperature TC out of range’ bit, bit 1 of the ‘COLOUR STATUS’.
|
||||
#define DALI_209_SET_TEMPORARY_PRIMARY_N_DIMLEVEL 0x00EA // 234 - Set temporary primary N dimlevel (Uses DTR0 (LSB), DTR1 (MSB) and DTR2 (N))
|
||||
#define DALI_209_SET_TEMPORARY_PRIMARY_N_DIMLEVEL 0xEA // 234 - Set temporary primary N dimlevel (Uses DTR0 (LSB), DTR1 (MSB) and DTR2 (N))
|
||||
// The value is expressed in units of 1/65536.
|
||||
// The maximum ‘PRIMARY N DIMLEVEL’ value is 0,99997 and shall be interpreted on a linear scale.
|
||||
// N depends on DTR2 and shall be in the range from 0 to 5 depending upon the available number of primaries.
|
||||
// For any other value of DTR2 the command shall be ignored.
|
||||
#define DALI_209_SET_TEMPORARY_RGB_DIMLEVEL 0x00EB // 235 - Set temporary RGB dimlevel
|
||||
#define DALI_209_SET_TEMPORARY_RGB_DIMLEVEL 0xEB // 235 - Set temporary RGB dimlevel
|
||||
// The data in the DTR shall be set as ‘TEMPORARY RED DIMLEVEL’.
|
||||
// The data in DTR1 shall be set as ‘TEMPORARY GREEN DIMLEVEL’.
|
||||
// The data in DTR2 shall be set as ‘TEMPORARY BLUE DIMLEVEL’.
|
||||
#define DALI_209_SET_TEMPORARY_WAF_DIMLEVEL 0x00EC // 236 - Set temporary WAF dimlevel
|
||||
#define DALI_209_SET_TEMPORARY_WAF_DIMLEVEL 0xEC // 236 - Set temporary WAF dimlevel
|
||||
// The data in the DTR shall be set as ‘TEMPORARY WHITE DIMLEVEL’.
|
||||
// The data in DTR1 shall be set as ‘TEMPORARY AMBER DIMLEVEL’.
|
||||
// The data in DTR2 shall be set as ‘TEMPORARY FREECOLOUR DIMLEVEL’.
|
||||
#define DALI_209_SET_TEMPORARY_RGBWAF_CONTROL 0x00ED // 237 - Set temporary RGBWAF control via DTR0
|
||||
#define DALI_209_SET_TEMPORARY_RGBWAF_CONTROL 0xED // 237 - Set temporary RGBWAF control via DTR0
|
||||
// The data in the DTR shall be stored as ‘TEMPORARY RGBWAF CONTROL’.
|
||||
// bit 0 - output channel 0/Red; '0' = Unlinked, '1' = Linked
|
||||
// bit 1 - output channel 1/Green; '0' = Unlinked, '1' = Linked
|
||||
@ -741,38 +741,38 @@
|
||||
// Bit 6 and bit 7: The control type defines how the gear shall react to Arc Power Commands.
|
||||
// The linked channels shall all be set to unlinked on any colour activation with colour type xy-coordinate, colour temperature TC or primary N.
|
||||
// NOTE More than one channel can be linked at the same time
|
||||
#define DALI_209_COPY_REPORT_TO_TEMPORARY 0x00EE // 238 - Copy the contents of the variables with the color settings to the variables for the temporary color settings.
|
||||
#define DALI_209_COPY_REPORT_TO_TEMPORARY 0xEE // 238 - Copy the contents of the variables with the color settings to the variables for the temporary color settings.
|
||||
|
||||
// Application extended configuration commands - Send as second byte with repeat
|
||||
#define DALI_209_RESERVED239 0x00EF // 239 - [Reserved]
|
||||
#define DALI_209_STORE_TY_PRIMARY_N 0x00F0 // 240 - Store TY Primary N via DTR0/1/2
|
||||
#define DALI_209_RESERVED239 0xEF // 239 - [Reserved]
|
||||
#define DALI_209_STORE_TY_PRIMARY_N 0xF0 // 240 - Store TY Primary N via DTR0/1/2
|
||||
// The value is expressed in units of 0,5 lumen resulting in a possible range of TYmin = 0 lumen, to TYmax = 32767 lumen.
|
||||
// A value of 65535 (“MASK”) means unknown.
|
||||
// N depends on DTR2 and shall be in the range from 0 to 5 depending upon the available number of primaries.
|
||||
// For any other value of DTR2 the command shall be ignored.
|
||||
// A value of “MASK” means that this primary is undefined and calibration is needed.
|
||||
#define DALI_209_STORE_XY_COORDINATE_PRIMARY_N 0x00F1 // 241 - Store XY coord primary channel N via DTR2
|
||||
#define DALI_209_STORE_XY_COORDINATE_PRIMARY_N 0xF1 // 241 - Store XY coord primary channel N via DTR2
|
||||
// The ‘TEMPORARY x-COORDINATE’ and the ‘TEMPORARY y-COORDINATE’, given by command 224 and command 225 shall be stored as ‘x-COORDINATE PRIMARY N’
|
||||
// respectively ‘y-COORDINATE PRIMARY N’ of primary N given by the value of DTR2, and shall be in the range from 0 to 5 depending upon the available number of primaries.
|
||||
// For any other value of DTR2 the command shall be ignored.
|
||||
// A value of “MASK” in one of the “temporary colour value” values shall be stored which means that this primary is undefined and calibration is needed.
|
||||
// NOTE 1 The intended use of this command is to store the actual xy-coordinate belonging to the primary. Any other use can lead to unexpected results (colours).
|
||||
// NOTE 2 xy-coordinates outside the CIE 1931 colour space chromaticity diagram are not meaningful.
|
||||
#define DALI_209_STORE_COLOUR_TEMP_TC_LIMIT 0x00F2 // 242 - Set color temperature Tc limit in Mirek (Uses DTR0 (LSB), DTR1 (MSB) and DTR2 (TcLimit type))
|
||||
#define DALI_209_STORE_COLOUR_TEMP_TC_LIMIT 0xF2 // 242 - Set color temperature Tc limit in Mirek (Uses DTR0 (LSB), DTR1 (MSB) and DTR2 (TcLimit type))
|
||||
// The value shall be stored in a variable defined by DTR2.
|
||||
// For any other value of DTR2 the command shall be ignored.
|
||||
// DTR2 = 0 - ColorTemperatureTcCoolest (lowest possible value but always equal to or warmer than the lowest possible physical value)
|
||||
// DTR2 = 1 - ColorTemperatureTcWarmest (highest possible value but always equal to or cooler than the highest possible physical value)
|
||||
// DTR2 = 2 - ColorTemperatureTcPhysicalCoolest (lowest possible physical value)
|
||||
// DTR2 = 3 - ColorTemperatureTcPhysicalWarmest (highest possible physical value)
|
||||
#define DALI_209_STORE_GEAR_FEATURES_STATUS 0x00F3 // 243 - Set gear features / status (See 247) (Uses DTR0)
|
||||
#define DALI_209_STORE_GEAR_FEATURES_STATUS 0xF3 // 243 - Set gear features / status (See 247) (Uses DTR0)
|
||||
// The data in the DTR shall be interpreted as follows:
|
||||
// bit 0 - Automatic Activation; '0' = No
|
||||
// bit 1..7 - reserved; ‘0’ = No
|
||||
// If bit 0, the ‘Automatic Activation’ bit, is set to 1, all arc power control commands except “ENABLE DAPC SEQUENCE” shall automatically trigger a colour transition.
|
||||
// If the ‘Automatic Activation’ bit is set, bit 0 of the “GEAR FEATURES/STATUS” byte shall be set.
|
||||
#define DALI_209_RESERVED244 0x00F4 // 244 - [Reserved]
|
||||
#define DALI_209_ASSIGN_COLOUR_TO_LINKED_COMMAND 0x00F5 // 245 - Assign to linked channel via DTR0
|
||||
#define DALI_209_RESERVED244 0xF4 // 244 - [Reserved]
|
||||
#define DALI_209_ASSIGN_COLOUR_TO_LINKED_COMMAND 0xF5 // 245 - Assign to linked channel via DTR0
|
||||
// The data held in the DTR in the range 0 to 6 shall be used to assign any/all linked output channel(s) to the given colour.
|
||||
// DTR0 = 0 - No colour assigned
|
||||
// DTR0 = 1 - Red
|
||||
@ -785,7 +785,7 @@
|
||||
// The linked channels are given by bit 0 to bit 5 held in “TEMPORARY RGBWAF CONTROL”.
|
||||
// If “TEMPORARY RGBWAF CONTROL” holds “MASK” the channel assignment shall not be changed.
|
||||
// The “TEMPORARY COLOUR SETTINGS” are set to “MASK” after use of this command.
|
||||
#define DALI_209_START_AUTO_CALIBRATION 0x00F6 // 246 - Start auto calibration
|
||||
#define DALI_209_START_AUTO_CALIBRATION 0xF6 // 246 - Start auto calibration
|
||||
// The command shall start or re-trigger a 15 min timer. Bit 2 of “COLOUR STATUS” shall be set to “1” whilst this timer is running.
|
||||
// When the timer stops the most recent colour type, colour value and arc power level shall be restored immediately
|
||||
// Whilst the timer is running the control gear shall run a calibration procedure in order to measure the x-coordinate, y-coordinate and the TY-value of
|
||||
@ -802,12 +802,12 @@
|
||||
// command 248 ‘QUERY COLOUR STATUS’ periodically and re-trigger the calibration process timer by command 246 (START AUTO CALIBRATION) if necessary
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_209_QUERY_GEAR_FEATURES_STATUS 0x00F7 // 247 - Returns gear features / status
|
||||
#define DALI_209_QUERY_GEAR_FEATURES_STATUS 0xF7 // 247 - Returns gear features / status
|
||||
// bit 0 - Automatic activation
|
||||
// bit 1..5 - reserved
|
||||
// bit 6 - Automatic calibration is supported
|
||||
// bit 7 - Restoration of the automatic calibration is supported
|
||||
#define DALI_209_QUERY_COLOUR_STATUS 0x00F8 // 248 - Returns color status
|
||||
#define DALI_209_QUERY_COLOUR_STATUS 0xF8 // 248 - Returns color status
|
||||
// bit 0 - xy coordinate color point is outside the valid range.
|
||||
// bit 1 - Color temperature Tc lies outside the valid range
|
||||
// bit 2 - Automatic calibration is active.
|
||||
@ -816,12 +816,12 @@
|
||||
// bit 5 - Color representation color temperature Tc active.
|
||||
// bit 6 - Color representation primary N active.
|
||||
// bit 7 - Color representation RGBWAF active.
|
||||
#define DALI_209_QUERY_COLOUR_TYPE_FEATURES 0x00F9 // 249 - Returns color type
|
||||
#define DALI_209_QUERY_COLOUR_TYPE_FEATURES 0xF9 // 249 - Returns color type
|
||||
// bit 0 - Supports color representation through xy coordinates.
|
||||
// bit 1 - Supports color representation through color temperature Tc.
|
||||
// bit 2..4 - Number of primary N colors supported. A value of 0 means that this color representation by primary colors is not supported.
|
||||
// bit 5..7 - Number of RGBWAF channels supported. A value of 0 means that this color representation by RGBWAF is not supported.
|
||||
#define DALI_209_QUERY_COLOUR_VALUE 0x00FA // 250 - Returns color value (DTR0 = E_DALIColourValue) (MSB in response, Uses DTR0 for LSB).
|
||||
#define DALI_209_QUERY_COLOUR_VALUE 0xFA // 250 - Returns color value (DTR0 = E_DALIColourValue) (MSB in response, Uses DTR0 for LSB).
|
||||
// The answer depends on the DTR0 Value.
|
||||
// Most responses involve a 16-bit number, in such cases the reponse is the MSB and LSB is loaded into DTR0.
|
||||
// Answers corresponding to the DTR values related to an active colour type are only valid if the colour type of the requested colour value is
|
||||
@ -910,7 +910,7 @@
|
||||
// NOTE 2 A control device should always use command 160 (“QUERY ACTUAL LEVEL”) to update the report colour setting before querying it.
|
||||
// NOTE 3 A value of “MASK” for any of “x-COORDINATE PRIMARY N”, “y-COORDINATE PRIMARY N” or “TY PRIMARY N” means that this primary is
|
||||
// undefined and calibration is needed.
|
||||
#define DALI_209_QUERY_RGBWAF_CONTROL 0x00FB // 251 - RGBWAFControl contains further information about the assignment between output channel and color.
|
||||
#define DALI_209_QUERY_RGBWAF_CONTROL 0xFB // 251 - RGBWAFControl contains further information about the assignment between output channel and color.
|
||||
// bit 0 - Output channel 0 / red
|
||||
// bit 1 - Output channel 1 / green
|
||||
// bit 2 - Output channel 2 / blue
|
||||
@ -922,7 +922,7 @@
|
||||
// 2 = standardized color control
|
||||
// 3 = reserved
|
||||
// If an output channel/colour is not supported the appropriate bit shall read '0'
|
||||
#define DALI_209_QUERY_ASSIGNED_COLOUR 0x00FC // 252 - Returns the color assigned to the specified output channel (DTR0 = 0...5). If a non-existent channel number is specified, 255 (MASK) is returned. (Uses DTR0)
|
||||
#define DALI_209_QUERY_ASSIGNED_COLOUR 0xFC // 252 - Returns the color assigned to the specified output channel (DTR0 = 0...5). If a non-existent channel number is specified, 255 (MASK) is returned. (Uses DTR0)
|
||||
// Assigned colour for a given channel (as specified in DTR0). Refer to Command 252 "QUERY ASSIGNED COLOUR".
|
||||
// Note that a response may indicate an assigned channel, or could also be "MASK" if the queried channel is not supported or is invalid.
|
||||
// value 0 - No color assigned
|
||||
@ -932,9 +932,9 @@
|
||||
// value 4 - White
|
||||
// value 5 - Amber
|
||||
// value 6 - Freely selectable color
|
||||
#define DALI_209_RESERVED253 0x00FD // 253 - [Reserved]
|
||||
#define DALI_209_RESERVED254 0x00FE // 254 - [Reserved]
|
||||
#define DALI_209_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_209_RESERVED253 0xFD // 253 - [Reserved]
|
||||
#define DALI_209_RESERVED254 0xFE // 254 - [Reserved]
|
||||
#define DALI_209_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
@ -945,7 +945,7 @@
|
||||
\*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
// Application extended query commands - Send as second byte
|
||||
#define DALI_210_QUERY_EXTENDED_VERSION_NUMBER 0x00FF // 255 - The version number of the extended support.
|
||||
#define DALI_210_QUERY_EXTENDED_VERSION_NUMBER 0xFF // 255 - The version number of the extended support.
|
||||
// This command must be preceded by an appropriate DALI_102_ENABLE_DEVICE_TYPE_X command; if it is not then it will be ignored.
|
||||
// Returns the version number of Part 2xx of IEC 62386 for the corresponding device type as an 8-bit number.
|
||||
// Device type implementations must provide their own implementation of QueryExtendedVersionNumber using this mixin.
|
||||
|
||||
@ -22,8 +22,7 @@
|
||||
* DALI support for Tasmota
|
||||
*
|
||||
* Available commands:
|
||||
* <byte1> or <byte3> = 0..255 or 0x00..0xFF + 256/0x100 for optional repeat (send twice)
|
||||
* <byte2> or <byte4> = 0..255 or 0x00..0xFF - Both decimal and hexadecimal is supported
|
||||
* <byte1>..<byte4> = 0..255 or 0x00..0xFF - Both decimal and hexadecimal is supported
|
||||
* <broadcast> = 0 - DALI default
|
||||
* <device> = 1..64 - DALI short address + 1
|
||||
* <group> = 101..116 - DALI group + 101
|
||||
@ -59,6 +58,8 @@
|
||||
--------------------------------------------------------------------------------------------
|
||||
Version yyyymmdd Action Description
|
||||
--------------------------------------------------------------------------------------------
|
||||
1.1.0.3 20251112 remove - Remove optional repeat for commands `DaliSend` and `DaliQuery`
|
||||
Send twice is now based on DALI defined commands type
|
||||
1.1.0.2 20251109 update - Add optional extended commands prefix for commands `DaliSend` and `DaliQuery`
|
||||
1.1.0.1 20241101 update - Enable DALI if another light is already claimed
|
||||
1.1.0.0 20241031 update - Add GUI sliders with feedback when `DaliLight 0`
|
||||
@ -153,6 +154,7 @@ struct DALI {
|
||||
uint8_t dimmer[DALI_MAX_STORED];
|
||||
uint8_t web_dimmer[DALI_MAX_STORED];
|
||||
uint8_t target;
|
||||
uint8_t device_type;
|
||||
bool allow_light;
|
||||
bool last_power;
|
||||
bool power[DALI_MAX_STORED];
|
||||
@ -419,7 +421,6 @@ void DaliSendDataOnce(uint16_t send_dali_data) {
|
||||
/*-------------------------------------------------------------------------------------------*/
|
||||
|
||||
void DaliSendData(uint32_t adr, uint32_t cmd) {
|
||||
bool repeat = (adr &0x100); // Set repeat if bit 8 is set
|
||||
adr &= 0xFF;
|
||||
cmd &= 0xFF;
|
||||
|
||||
@ -427,31 +428,50 @@ void DaliSendData(uint32_t adr, uint32_t cmd) {
|
||||
Dali->command = cmd;
|
||||
DaliSaveState(adr, cmd);
|
||||
|
||||
if (!repeat && (adr &0x01)) { // YAAAAAA1 Commands where user didn't set repeat
|
||||
if ((adr >= 0xA1) && (adr <= 0xFD)) { // Special commands
|
||||
repeat = ((0xA5 == adr) || (0xA7 == adr));
|
||||
} else {
|
||||
// ((cmd >=0) && (cmd <= 31)) // Arc power control commands
|
||||
repeat = (((cmd >=32) && (cmd <= 143)) || // Configuration commands
|
||||
((cmd >=224) && (cmd <= 236))); // Extended configuration commands
|
||||
// ((cmd >=144) && (cmd <= 223)) // Query commands
|
||||
// ((cmd >=237) && (cmd <= 255)) // Extended query commands
|
||||
bool send_twice = false;
|
||||
if (adr &0x01) { // Selector bit (command) or special command
|
||||
if (DALI_102_ENABLE_DEVICE_TYPE_X == adr) {
|
||||
Dali->device_type = cmd; // Next command will be an extended command
|
||||
}
|
||||
uint32_t send_twice_extended_start;
|
||||
uint32_t send_twice_extended_end;
|
||||
if (4 == Dali->device_type) {
|
||||
send_twice_extended_start = DALI_205_REFERENCE_SYSTEM_POWER;
|
||||
send_twice_extended_end = DALI_205_RESERVED237;
|
||||
}
|
||||
else if (6 == Dali->device_type) {
|
||||
send_twice_extended_start = DALI_207_REFERENCE_SYSTEM_POWER;
|
||||
send_twice_extended_end = DALI_207_RESERVED236;
|
||||
}
|
||||
else if (8 == Dali->device_type) {
|
||||
send_twice_extended_start = DALI_209_SET_TEMPORARY_X_COORDINATE;
|
||||
send_twice_extended_end = DALI_209_START_AUTO_CALIBRATION;
|
||||
}
|
||||
if ((DALI_102_INITIALISE == adr) ||
|
||||
(DALI_102_RANDOMISE == adr) ||
|
||||
((cmd >= DALI_102_RESET) && (cmd <= DALI_102_RESERVED143)) || // Configuration commands
|
||||
(Dali->device_type && (cmd >= send_twice_extended_start) && (cmd <= send_twice_extended_end))) {
|
||||
send_twice = true;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef DALI_DEBUG
|
||||
AddLog(LOG_LEVEL_DEBUG, PSTR("DLI: Tx 0x%d%02X%02X"), repeat, adr, cmd);
|
||||
AddLog(LOG_LEVEL_DEBUG, PSTR("DLI: Tx DT%d, Twice %d, Adr 0x%02X, Cmd 0x%02X"), Dali->device_type, send_twice, adr, cmd);
|
||||
#endif // DALI_DEBUG
|
||||
|
||||
uint16_t send_dali_data = adr << 8 | cmd;
|
||||
|
||||
DaliDisableRxInterrupt();
|
||||
DaliSendDataOnce(send_dali_data); // Takes 14.7 ms
|
||||
if (repeat) {
|
||||
if (send_twice) {
|
||||
DaliSendDataOnce(send_dali_data); // Takes 14.7 ms
|
||||
}
|
||||
delay(2); // Block response
|
||||
DaliEnableRxInterrupt();
|
||||
|
||||
if (Dali->device_type && (cmd >= 224) && (cmd <= 255)) { // Extended commands
|
||||
Dali->device_type = 0; // Reset after execution of extended command
|
||||
}
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------------------------------------------*/
|
||||
@ -483,13 +503,21 @@ int DaliSendWaitResponse(uint32_t adr, uint32_t cmd, uint32_t timeout) {
|
||||
* Courtesy of https://github.com/qqqlab/DALI-Lighting-Interface
|
||||
\*********************************************************************************************/
|
||||
|
||||
bool DaliSetDTR(uint32_t dtr, uint32_t adr, uint32_t value) {
|
||||
uint8_t dtr_set[3] = { DALI_102_SET_DTR0, DALI_102_SET_DTR1, DALI_102_SET_DTR2 };
|
||||
uint8_t dtr_query[3] = { DALI_102_QUERY_CONTENT_DTR0, DALI_102_QUERY_CONTENT_DTR1, DALI_102_QUERY_CONTENT_DTR2 };
|
||||
|
||||
if (dtr > 2) { dtr = 0; }
|
||||
DaliSendData(dtr_set[dtr], value); // Store value in DTR
|
||||
int result = DaliSendWaitResponse(adr, dtr_query[dtr]); // Get DTR value
|
||||
return (result == value);
|
||||
}
|
||||
|
||||
bool DaliSetValue(uint32_t adr, uint32_t getcmd, uint32_t setcmd, uint32_t v) {
|
||||
// Set a parameter value, returns true on success
|
||||
int current_v = DaliSendWaitResponse(adr, getcmd); // Get current parameter value
|
||||
if (current_v == v) { return true; } // Already set
|
||||
DaliSendData(DALI_102_SET_DTR0, v); // Store value in DTR
|
||||
int dtr = DaliSendWaitResponse(adr, DALI_102_QUERY_CONTENT_DTR0); // Get DTR value
|
||||
if (dtr != v) { return false; }
|
||||
if (!DaliSetDTR(0, adr, v)) { return false; }
|
||||
DaliSendData(adr, setcmd); // Set parameter value = DTR
|
||||
current_v = DaliSendWaitResponse(adr, getcmd); // Get current parameter value
|
||||
if (current_v != v) { return false; } // Set failed
|
||||
@ -783,7 +811,7 @@ bool DaliInit(uint32_t function) {
|
||||
}
|
||||
if ((-1 == pin_tx) || (-1 == pin_rx)) { return false; }
|
||||
|
||||
Dali = (DALI*)calloc(sizeof(DALI), 1);
|
||||
Dali = (DALI*)calloc(sizeof(DALI), 1); // Need calloc to reset registers to 0/false
|
||||
if (!Dali) { return false; }
|
||||
|
||||
Dali->pin_tx = pin_tx;
|
||||
@ -1055,14 +1083,95 @@ void CmndDaliGear(void) {
|
||||
|
||||
void CmndDaliSend(void) {
|
||||
// Send command
|
||||
// Setting bit 8 will repeat command once
|
||||
// DaliSend 0x1a5,255 - DALI Initialise (0xa5 + 0x100 = send twice)
|
||||
// DaliSend 0xa5,255 - DALI Initialise
|
||||
// DaliSend 6,3,0xe2 - DALI DT6 (6) for address 1 (3) extended command disable current protector (0xe2)
|
||||
// DaliSend 0x01,0xa3,0x2d,254 - Set Power On level (0x2d) for address 0 (0x01) to 254 only if Read Power On level (0xa3) is different
|
||||
uint32_t values[4] = { 0 };
|
||||
uint32_t params = ParseParameters(4, values);
|
||||
|
||||
if (2 == params) { // Prepare for Extended command
|
||||
uint32_t values[5] = { 0 };
|
||||
uint32_t params = ParseParameters(5, values);
|
||||
|
||||
#ifdef DALI_DEBUG
|
||||
AddLog(LOG_LEVEL_DEBUG, PSTR("DLI: index %d, params %d, values %d,%d,%d,%d,%d"), XdrvMailbox.index, params, values[0], values[1], values[2], values[3], values[4]);
|
||||
#endif // DALI_DEBUG
|
||||
|
||||
if (6 == XdrvMailbox.index) { // DaliSend6 - DT6 = 207 = Extended LED commands 224...236
|
||||
/*
|
||||
params 0 1 2
|
||||
DaliSend6 <broadcast>|<device>|<group> |<special_command>,<command>|<special_command_data>,<dtr0_data>
|
||||
254 0..126 128..158 160..251 0..255 0..255 0..255
|
||||
DaliSend6 <broadcast>|<device>|<group>,<command>
|
||||
*/
|
||||
if ((params >= 2) && (values[1] >= 224) && (values[1] <= 255)) { // DT6 extended command
|
||||
if ((DALI_207_SELECT_DIMMING_CURVE == values[1]) ||
|
||||
(DALI_207_SET_FAST_FADE_TIME == values[1])) {
|
||||
// DaliSend6 <broadcast>|<device>|<group>,<command>,<dtr0>
|
||||
if (!DaliSetDTR(0, values[0], values[2])) { return; }
|
||||
}
|
||||
DaliSendData(DALI_102_ENABLE_DEVICE_TYPE_X, 6); // Enable Extended command
|
||||
DaliSendData(values[0], values[1]);
|
||||
ResponseCmndDone();
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (8 == XdrvMailbox.index) { // DaliSend8 - DT8 = 209 = Extended colour commands 224...246
|
||||
/*
|
||||
params 0 1 2 3 4
|
||||
DaliSend8 <broadcast>|<device>|<group> |<special_command>,<command>|<special_command_data>,<dtr0_data>|<dtr0_1_data>|<dtr2_data>,<dtr1_data>|<dtr2_data>,<dtr2_data>
|
||||
254 0..126 128..158 160..251 0..255 0..255 0..255 0..65535 0..255 0..255 0..255 0..255
|
||||
DaliSend8 <special_command>,<special_command_data>
|
||||
DaliSend8 <broadcast>|<device>|<group>,<command>
|
||||
*/
|
||||
if ((params >= 2) && (values[1] >= 224) && (values[1] <= 255)) { // DT8 extended command
|
||||
// params == 3
|
||||
if ((DALI_209_SET_TEMPORARY_RGBWAF_CONTROL == values[1]) ||
|
||||
(DALI_209_STORE_GEAR_FEATURES_STATUS == values[1]) ||
|
||||
(DALI_209_ASSIGN_COLOUR_TO_LINKED_COMMAND == values[1])) {
|
||||
// DaliSend8 <broadcast>|<device>|<group>,<command>,<dtr0_data>
|
||||
if (!DaliSetDTR(0, values[0], values[2])) { return; }
|
||||
}
|
||||
else if ((DALI_209_SET_TEMPORARY_X_COORDINATE == values[1]) ||
|
||||
(DALI_209_SET_TEMPORARY_Y_COORDINATE == values[1]) ||
|
||||
(DALI_209_SET_TEMPORARY_COLOUR_TEMP_TC == values[1])) {
|
||||
// DaliSend8 <broadcast>|<device>|<group>,<command>,<dtr0_1_data>
|
||||
if (!DaliSetDTR(0, values[0], values[2] % 256)) { return; }
|
||||
if (!DaliSetDTR(1, values[0], values[2] / 256)) { return; }
|
||||
}
|
||||
else if (DALI_209_STORE_XY_COORDINATE_PRIMARY_N == values[1]) {
|
||||
// DaliSend8 <broadcast>|<device>|<group>,<command>,<dtr2_data>
|
||||
if (!DaliSetDTR(2, values[0], values[2])) { return; }
|
||||
}
|
||||
// params == 4
|
||||
else if ((DALI_209_SET_TEMPORARY_PRIMARY_N_DIMLEVEL == values[1]) ||
|
||||
(DALI_209_STORE_TY_PRIMARY_N == values[1]) ||
|
||||
(DALI_209_STORE_COLOUR_TEMP_TC_LIMIT == values[1])) {
|
||||
// DaliSend8 <broadcast>|<device>|<group>,<command>,<dtr0_1_data>,<dtr2_data>
|
||||
if (!DaliSetDTR(0, values[0], values[2] % 256)) { return; }
|
||||
if (!DaliSetDTR(1, values[0], values[2] / 256)) { return; }
|
||||
if (!DaliSetDTR(2, values[0], values[3])) { return; }
|
||||
}
|
||||
// params == 5
|
||||
else if ((DALI_209_SET_TEMPORARY_RGB_DIMLEVEL == values[1]) ||
|
||||
(DALI_209_SET_TEMPORARY_WAF_DIMLEVEL == values[1])) {
|
||||
// DaliSend8 <broadcast>|<device>|<group>,<command>,<dtr0_data>,<dtr1_data>,<dtr2_data>
|
||||
if (!DaliSetDTR(0, values[0], values[2])) { return; }
|
||||
if (!DaliSetDTR(1, values[0], values[3])) { return; }
|
||||
if (!DaliSetDTR(2, values[0], values[4])) { return; }
|
||||
}
|
||||
DaliSendData(DALI_102_ENABLE_DEVICE_TYPE_X, 8); // Enable Extended command
|
||||
DaliSendData(values[0], values[1]);
|
||||
ResponseCmndDone();
|
||||
return;
|
||||
}
|
||||
}
|
||||
/*
|
||||
params 0 1 2 3 4
|
||||
DaliSend [<dt>,]<broadcast>|<device>|<group> |<special_command>,<command>|<special_command_data>,<dtr0_1_data>,<dtr2_data>
|
||||
6,8 254 0..126 128..158 160..251 0..255 0..255 0..255/65535 0..255
|
||||
DaliSend <special_command>,<special_command_data>
|
||||
DaliSend <broadcast>|<device>|<group>,<command>
|
||||
DaliSend <broadcast>|<device>|<group>,<command>,<dtr0>
|
||||
*/
|
||||
if (2 == params) { // Prepare for default Extended command DT6 - LEDs
|
||||
if ((values[1] >= 224) && (values[1] <= 255)) { // Extended command
|
||||
values[2] = values[1];
|
||||
values[1] = values[0];
|
||||
@ -1077,7 +1186,7 @@ void CmndDaliSend(void) {
|
||||
params = 2;
|
||||
}
|
||||
if (2 == params) {
|
||||
DaliSendData(values[0] &0x1FF, values[1] &0xFF);
|
||||
DaliSendData(values[0], values[1]);
|
||||
ResponseCmndDone();
|
||||
}
|
||||
else if (4 == params) {
|
||||
@ -1093,12 +1202,40 @@ void CmndDaliSend(void) {
|
||||
|
||||
void CmndDaliQuery(void) {
|
||||
// Send command and return response or -1 (no response within DALI_TIMEOUT)
|
||||
// Setting bit 8 will repeat command once
|
||||
// DaliQuery 0xff,0x90 - DALI Query status
|
||||
// DaliQuery 0xff,144 - DALI Query status
|
||||
// DaliQuery 6,7,237 - DALI DT6 (6) for address 3 (7) extended command query status (237)
|
||||
uint32_t values[3] = { 0 };
|
||||
uint32_t params = ParseParameters(3, values);
|
||||
|
||||
if (6 == XdrvMailbox.index) { // DaliQuery6 - DT6 = 207 = Extended LED commands 224...236
|
||||
if ((params >= 2) && (values[1] >= 224) && (values[1] <= 255)) { // DT6 extended command
|
||||
DaliSendData(DALI_102_ENABLE_DEVICE_TYPE_X, 6); // Enable Extended command
|
||||
int result = DaliSendWaitResponse(values[0], values[1]);
|
||||
ResponseCmndNumber(result);
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (8 == XdrvMailbox.index) { // DaliQuery8 - DT8 = 209 = Extended colour commands 224...246
|
||||
if ((params >= 2) && (values[1] >= 224) && (values[1] <= 255)) { // DT8 extended command
|
||||
if (DALI_209_QUERY_COLOUR_VALUE == values[1]) {
|
||||
if (!DaliSetDTR(0, values[0], values[2])) { return; }
|
||||
}
|
||||
DaliSendData(DALI_102_ENABLE_DEVICE_TYPE_X, 8); // Enable Extended command
|
||||
int result = DaliSendWaitResponse(values[0], values[1]);
|
||||
if (DALI_209_QUERY_COLOUR_VALUE == values[1]) {
|
||||
if (result >= 0) {
|
||||
uint32_t result2 = result << 8;
|
||||
int result = DaliSendWaitResponse(values[0], DALI_102_QUERY_CONTENT_DTR0);
|
||||
if (result >= 0) {
|
||||
result = result2 | result;
|
||||
}
|
||||
}
|
||||
}
|
||||
ResponseCmndNumber(result);
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (2 == params) {
|
||||
if ((values[1] >= 224) && (values[1] <= 255)) { // Extended command
|
||||
values[2] = values[1];
|
||||
@ -1108,7 +1245,8 @@ void CmndDaliQuery(void) {
|
||||
}
|
||||
}
|
||||
if (3 == params) {
|
||||
DaliSendWaitResponse(DALI_102_ENABLE_DEVICE_TYPE_X, values[0] &0xFF); // Enable Extended command
|
||||
// DaliSendWaitResponse(DALI_102_ENABLE_DEVICE_TYPE_X, values[0] &0xFF); // Enable Extended command
|
||||
DaliSendData(DALI_102_ENABLE_DEVICE_TYPE_X, values[0]); // Enable Extended command
|
||||
values[0] = values[1];
|
||||
values[1] = values[2];
|
||||
params = 2;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user