This is the description of the TCP/IP protocol for the DMX Bricklet. General information and technical specifications for the DMX Bricklet are summarized in its hardware description.
A general description of the TCP/IP protocol structure can be found here.
BrickletDMX.
set_dmx_mode
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the DMX mode to either master or slave.
Calling this function sets frame number to 0.
The following meanings are defined for the elements of this function:
For dmx_mode:
BrickletDMX.
get_dmx_mode
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the DMX mode, as set by set_dmx_mode
.
The following meanings are defined for the elements of this function:
For dmx_mode:
BrickletDMX.
write_frame_low_level
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Writes a DMX frame. The maximum frame size is 512 byte. Each byte represents one channel.
The next frame can be written after the CALLBACK_FRAME_STARTED
callback was called. The frame
is double buffered, so a new frame can be written as soon as the writing of the prior frame
starts.
The data will be transfered when the next frame duration ends, see set_frame_duration
.
Generic approach:
CALLBACK_FRAME_STARTED
callback.CALLBACK_FRAME_STARTED
callback.This approach ensures that you can set new DMX data with a fixed frame rate.
This function can only be called in master mode.
BrickletDMX.
read_frame_low_level
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the last frame that was written by the DMX master. The size of the array is equivalent to the number of channels in the frame. Each byte represents one channel.
The next frame is available after the CALLBACK_FRAME_AVAILABLE
callback was called.
Generic approach:
read_frame_low_level
to get first frame.CALLBACK_FRAME_AVAILABLE
callback.read_frame_low_level
to get second frame.CALLBACK_FRAME_AVAILABLE
callback.Instead of polling this function you can also use the CALLBACK_FRAME_LOW_LEVEL
callback.
You can enable it with set_frame_callback_config
.
The frame number starts at 0 and it is increased by one with each received frame.
This function can only be called in slave mode.
BrickletDMX.
set_frame_duration
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the duration of a frame.
Example: If you want to achieve 20 frames per second, you should set the frame duration to 50ms (50ms * 20 = 1 second).
If you always want to send a frame as fast as possible you can set this value to 0.
This setting is only used in master mode.
BrickletDMX.
get_frame_duration
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the frame duration as set by set_frame_duration
.
BrickletDMX.
get_frame_error_count
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the current number of overrun and framing errors.
BrickletDMX.
set_communication_led_config
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the communication LED configuration. By default the LED shows communication traffic, it flickers once for every 10 received data packets.
You can also turn the LED permanently on/off or show a heartbeat.
If the Bricklet is in bootloader mode, the LED is off.
The following meanings are defined for the elements of this function:
For config:
BrickletDMX.
get_communication_led_config
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the configuration as set by set_communication_led_config
The following meanings are defined for the elements of this function:
For config:
BrickletDMX.
set_error_led_config
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the error LED configuration.
By default the error LED turns on if there is any error (see CALLBACK_FRAME_ERROR_COUNT
callback). If you call this function with the Show-Error option again, the LED
will turn off until the next error occurs.
You can also turn the LED permanently on/off or show a heartbeat.
If the Bricklet is in bootloader mode, the LED is off.
The following meanings are defined for the elements of this function:
For config:
BrickletDMX.
get_error_led_config
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the configuration as set by set_error_led_config
.
The following meanings are defined for the elements of this function:
For config:
BrickletDMX.
get_spitfp_error_count
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the error count for the communication between Brick and Bricklet.
The errors are divided into
The errors counts are for errors that occur on the Bricklet side. All Bricks have a similar function that returns the errors on the Brick side.
BrickletDMX.
set_status_led_config
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the status LED configuration. By default the LED shows communication traffic between Brick and Bricklet, it flickers once for every 10 received data packets.
You can also turn the LED permanently on/off or show a heartbeat.
If the Bricklet is in bootloader mode, the LED is will show heartbeat by default.
The following meanings are defined for the elements of this function:
For config:
BrickletDMX.
get_status_led_config
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the configuration as set by set_status_led_config
The following meanings are defined for the elements of this function:
For config:
BrickletDMX.
get_chip_temperature
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the temperature as measured inside the microcontroller. The value returned is not the ambient temperature!
The temperature is only proportional to the real temperature and it has bad accuracy. Practically it is only useful as an indicator for temperature changes.
BrickletDMX.
reset
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Calling this function will reset the Bricklet. All configurations will be lost.
After a reset you have to create new device objects, calling functions on the existing ones will result in undefined behavior!
BrickletDMX.
get_identity
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the UID, the UID where the Bricklet is connected to, the position, the hardware and firmware version as well as the device identifier.
The position can be 'a', 'b', 'c', 'd', 'e', 'f', 'g' or 'h' (Bricklet Port). A Bricklet connected to an Isolator Bricklet is always at position 'z'.
The device identifier numbers can be found here.
BrickletDMX.
set_frame_callback_config
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Enables/Disables the different callbacks. By default the
CALLBACK_FRAME_STARTED
callback and CALLBACK_FRAME_AVAILABLE
callback are enabled while
the CALLBACK_FRAME_LOW_LEVEL
callback and CALLBACK_FRAME_ERROR_COUNT
callback are disabled.
If you want to use the CALLBACK_FRAME_LOW_LEVEL
callback you can enable it and disable
the CALLBACK_FRAME_AVAILABLE
callback at the same time. It becomes redundant in
this case.
BrickletDMX.
get_frame_callback_config
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the frame callback config as set by set_frame_callback_config
.
BrickletDMX.
CALLBACK_FRAME_STARTED
¶Function ID: |
|
---|---|
Response: |
|
This callback is triggered as soon as a new frame write is started. You should send the data for the next frame directly after this callback was triggered.
For an explanation of the general approach see write_frame_low_level
.
This callback can be enabled via set_frame_callback_config
.
This callback can only be triggered in master mode.
BrickletDMX.
CALLBACK_FRAME_AVAILABLE
¶Function ID: |
|
---|---|
Response: |
|
This callback is triggered in slave mode when a new frame was received from the DMX master
and it can be read out. You have to read the frame before the master has written
the next frame, see read_frame_low_level
for more details.
The parameter is the frame number, it is increased by one with each received frame.
This callback can be enabled via set_frame_callback_config
.
This callback can only be triggered in slave mode.
BrickletDMX.
CALLBACK_FRAME_LOW_LEVEL
¶Function ID: |
|
---|---|
Response: |
|
This callback is called as soon as a new frame is available (written by the DMX master).
The size of the array is equivalent to the number of channels in the frame. Each byte represents one channel.
This callback can be enabled via set_frame_callback_config
.
This callback can only be triggered in slave mode.
BrickletDMX.
CALLBACK_FRAME_ERROR_COUNT
¶Function ID: |
|
---|---|
Response: |
|
This callback is called if a new error occurs. It returns the current overrun and framing error count.
Internal functions are used for maintenance tasks such as flashing a new firmware of changing the UID of a Bricklet. These task should be performed using Brick Viewer instead of using the internal functions directly.
BrickletDMX.
set_bootloader_mode
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the bootloader mode and returns the status after the requested mode change was instigated.
You can change from bootloader mode to firmware mode and vice versa. A change from bootloader mode to firmware mode will only take place if the entry function, device identifier and CRC are present and correct.
This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.
The following meanings are defined for the elements of this function:
For mode:
For status:
BrickletDMX.
get_bootloader_mode
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the current bootloader mode, see set_bootloader_mode
.
The following meanings are defined for the elements of this function:
For mode:
BrickletDMX.
set_write_firmware_pointer
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the firmware pointer for write_firmware
. The pointer has
to be increased by chunks of size 64. The data is written to flash
every 4 chunks (which equals to one page of size 256).
This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.
BrickletDMX.
write_firmware
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Writes 64 Bytes of firmware at the position as written by
set_write_firmware_pointer
before. The firmware is written
to flash every 4 chunks.
You can only write firmware in bootloader mode.
This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.
BrickletDMX.
write_uid
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Writes a new UID into flash. If you want to set a new UID you have to decode the Base58 encoded UID string into an integer first.
We recommend that you use Brick Viewer to change the UID.
BrickletDMX.
read_uid
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the current UID as an integer. Encode as Base58 to get the usual string version.