Difference between revisions of "Position (DDF-Syntax) DMXC3"
Line 1: | Line 1: | ||
− | {{Chaptertitle |Version=DMXControl 3.2.3}} | + | {{Chaptertitle|Version=DMXControl 3.2.3}} |
− | + | {{DMXC3 Manual-Navigation DDF | |
− | {{ | + | |backLink = Intensity (DDF-Syntax) DMXC3 |
− | |backLink = | ||
|backText = Intensity | |backText = Intensity | ||
− | |forwardLink = | + | |forwardLink = Color (DDF-Syntax) DMXC3 |
|forwardText = Color | |forwardText = Color | ||
}} | }} | ||
− | {{ | + | |
+ | {{Manual Windowcaption|Position}} and {{Manual Windowcaption|Pan-Tilt speed}} are functions in the DDFs for DMXControl 3, which are assigned to the {{Manual Objectcaption|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 {{Manual Windowcaption|[[Control Panel DMXC3|Control Panel]]}}. | ||
+ | |||
= Position = | = Position = | ||
− | In the {{ | + | In the {{Manual Windowcaption|Position}} function, the DMX channels for the pan and tilt movement of moving heads and scanners are stored in the DDF. |
− | |||
{{DMXC3 Manual-Tableheader DDF-Code examples | en}} | {{DMXC3 Manual-Tableheader DDF-Code examples | en}} | ||
| Standard | | Standard | ||
Line 59: | Line 59: | ||
|} | |} | ||
− | = Pan-Tilt | + | = Pan-Tilt speed = |
The Pan-Tilt Speed function determines how fast a moving head or scanner moves during its travels. | The Pan-Tilt Speed function determines how fast a moving head or scanner moves during its travels. | ||
− | |||
{{DMXC3 Manual-Tableheader DDF-Code examples | en}} | {{DMXC3 Manual-Tableheader DDF-Code examples | en}} | ||
| Standard | | Standard | ||
Line 93: | Line 92: | ||
|} | |} | ||
+ | [[de:Position (DDF-Syntax) DMXC3]] | ||
[[Category: DDF DMXControl 3]] | [[Category: DDF DMXControl 3]] |
Latest revision as of 13:50, 10 February 2024
Position (DDF-Syntax) DMXC3 | Article describes DMXControl 3.2.3 |
|
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 %
|