Difference between revisions of "Procedures examples (DDF-Syntax) DMXC3"
Jump to navigation
Jump to search
(Created page with "{{Chaptertitle|version=DMXControl 3.1.2}} {{DMXC3_Manual-Navigation_DDF |backLink = DDF-Procedures_Functions_DMXC3 |backText = Functions |forwardLink = |forwardText = }} The...") |
|||
Line 2: | Line 2: | ||
{{DMXC3_Manual-Navigation_DDF | {{DMXC3_Manual-Navigation_DDF | ||
− | |backLink = DDF- | + | |backLink = Procedures functions (DDF-Syntax) DMXC3 |
|backText = Functions | |backText = Functions | ||
|forwardLink = | |forwardLink = |
Revision as of 00:47, 7 February 2024
Procedures examples (DDF-Syntax) DMXC3 |
|
The following table shows some examples of predefined as well as custom procedures.
Tag | Variant | Code |
---|---|---|
reset
|
Complete device reset | <reset>
<set dmxchannel="0" value="255" />
<hold value="6000" />
<restore dmxchannel="0" />
</reset>
Reset
|
lamp_on
|
Turn on lamp | <lamp_on>
<set dmxchannel="0" value="255" />
<hold value="4000" />
<restore dmxchannel="0" />
</lamp_on>
Turn on lamp
|
lamp_off
|
Turn off lamp | <lamp_off>
<set dmxchannel="0" value="50" />
<hold value="8000" />
<restore dmxchannel="0" />
</lamp_off>
Turn off lamp
|
procedure
|
Eco-mode for lamp | <procedure name="Lamp eco mode">
<set dmxchannel="0" value="170" />
<hold value="4500" />
<restore dmxchannel="0" />
</procedure>
Custom procedure named "Eco-mode for lamp"
|