The DMX device enables control of DMX fixtures within the ICE environment through ICE Actions.
Setup
Currently, ICE supports the Enttec USB DMX mk2 device.
The device ID must be configured within the DMXSettings.xml file located at:
C:\ProgramData\Igloo Vision\IglooCoreEngine\settings\triggers and actions > devices > dmx
Defining Actions
Users can create Actions to control DMX channels. Before use, actions must first be defined in the DMXActions.xml file. Two primary types of actions are supported: "set" actions for setting specific channel values and "control" actions for dynamic manipulation of channels.
Example of "set" Action
Type should be “set“
Channels should contain ‘“targetValue”
Code Block |
---|
<action name="Set Colour Red" type="set">
<channels>
<channel value="0" name="brightness" targetValue ="255"/>
<channel value="1" name="red" targetValue ="255"/>
<channel value="2" name="green" targetValue ="0"/>
<channel value="3" name="blue" targetValue ="0"/>
<channel value="4" name="strobe" targetValue ="0"/>
<channel value="5" name="control" targetValue ="255"/>
</channels>
</action> |
Example of "control" Action
Type should be “control“
Channels should contain ‘“min” “max“
Code Block |
---|
<action name="colour" type="control">
<channels>
<channel value="0" name="brightness" min="0" max="255"/>
<channel value="1" name="red" min="0" max="255"/>
<channel value="2" name="green" min="0" max="255"/>
<channel value="3" name="blue" min="0" max="255"/>
<channel value="4" name="strobe" min="0" max="255"/>
<channel value="5" name="control" min="0" max="255"/>
</channels>
</action>
|