Position (DDF-Syntax) DMXC3
Position (DDF-Syntax) DMXC3 |
|
Position and Pan-Tilt Speed are functions in the DDFs for DMXControl 3, which are assigned to the Position group and are needed for the movement of a moving head or scanner, i.e., the horizontal and vertical movement of the head or mirror. For positioning a moving head or scanner in space, the GUI provides a corresponding Control Panel.
Position
In the Position function, the DMX channels for the pan and tilt movement of moving heads and scanners are stored in the DDF.
Case | Code example |
---|---|
Standard | <position>
<pan dmxchannel="0" finedmxchannel="1">
<range range="540" />
</pan>
<tilt dmxchannel="2" finedmxchannel="3">
<range range="240" />
</tilt>
</position>
Pan and tilt movement with a resolution of 16 bits on DMX channels 1 to 4, using the DMXControl internal standard definition:
|
Positioning the pan and tilt axis only over a subset of the DMX channel | <position>
<pan dmxchannel="0">
<range range="630" mindmx="0" maxdmx="191" minval="0" maxval="630" />
</pan>
<tilt dmxchannel="1">
<range range="360" mindmx="0" maxdmx="191" minval="0" maxval="360" />
</tilt>
</position>
Pan and tilt movement with a resolution of 8 bits on DMX channels 1 and 2:
|
Device has only one movement axis | <position>
<pan>
<range range="0" />
</pan>
<tilt dmxchannel="0" finedmxchannel="1">
<range range="240" />
</tilt>
</position>
Device has only one tilt axis with a resolution of 16 bits on DMX channels 1 and 2:
|
Pan-Tilt Speed
The Pan-Tilt Speed function determines how fast a moving head or scanner moves during its travels.
Case | Code example |
---|---|
Standard | <ptspeed dmxchannel="0">
<range type="linear" mindmx="255" maxdmx="0" minval="0" maxval="100" />
</ptspeed>
Pan-Tilt speed on channel 1:
|
Attribute | type | mindmx | maxdmx | minval | maxval |
---|---|---|---|---|---|
Description | |||||
Description | DMX value for minimum Pan-Tilt speed | DMX value for maximum Pan-Tilt speed | Minimum Pan-Tilt speed | Maximum Pan-Tilt speed | |
Allowed Attribute Value | linear
|
0 to 255
|
0 to 255
|
0 % to 100 %
|
0 % to 100 %
|