Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The DMX device enables control of DMX fixtures within the ICE environment through ICE through Igloo Core Engine Actions.

Setup

Currently, ICE Igloo Core Engine supports the Enttec USB DMX mk2 device.

...

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 ="25520"/>
	</channels>
</action>

Set actions will appear within the Triggers and Actions window as events with no parameters

...

Example of "control" Action

  • Type should be “control“

  • Channels should contain ‘“min” “max“

Code Block
<action name="colourManual 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>

Usage

Control actions will appear within the Triggers and Actions window as events with parameters exposed for controlling as needed.

...