Moin,
ich hab hier die Eurolite KLS Laser Bar: https://www.steinigke.de/de/mp…aser-bar-fx-lichtset.html
Mein DDF funktioniert, bis auf der Laser.
Kanalbelegung Laser:
Code
Kanal 0: Laser Rot: 0-4 off; 5-9 on; 10-255 Strobe (langsam->schnell)
Kanal 1: Laser Grün: 0-4 off; 5-9 on; 10-255 Strobe (langsam->schnell)
Kanal 2: Rotation: 0-4 off; 5-127 CW (langsam->schnell); 134-255 CCW (langsam->schnell)
Meine zwei Versuche:
1. Alles in Raw Werten, lässt sich leider nur schlecht steuern:
Code
<functions>
<rawstep dmxchannel="0" name="Laser Rot">
<step mindmx="0" maxdmx="4" caption="Laser off"/>
<step mindmx="5" maxdmx="9" caption="Laser on"/>
</rawstep>
<rawranges dmxchannel="0" name="Laser Rot Strobe">
<range type="off" mindmx="0" maxdmx="4" minval="0" maxval="0" />
<range type="Strobe" mindmx="10" maxdmx="255" minval="0.1" maxval="10" />
</rawranges>
<rawstep dmxchannel="1" name="Laser Grün">
<step mindmx="0" maxdmx="4" caption="Laser off"/>
<step mindmx="5" maxdmx="9" caption="Laser on"/>
</rawstep>
<rawranges dmxchannel="1" name="Laser Grün Strobe">
<range type="off" mindmx="0" maxdmx="4" minval="0" maxval="0" />
<range type="Strobe" mindmx="10" maxdmx="255" minval="0.1" maxval="10" />
</rawranges>
<rotation dmxchannel="2">
<step type="stop" mindmx="0" maxdmx="4" />
<range type="cw" mindmx="5" maxdmx="127" minval="0.1" maxval="5" />
<range type="ccw" mindmx="134" maxdmx="255" minval="0.1" maxval="5" />
</rotation>
</functions>
Display More
2. Mit 2 Shutter und Strobe Kanälen, wird von DMXControl ohne Fehlermeldung nicht geladen:
Code
<functions>
<shutter dmxchannel="0">
<step type="closed" mindmx="0" maxdmx="4"/>
<step type="open" mindmx="5" maxdmx="9"/>
</shutter>
<strobe dmxchannel="0">
<step type="open" mindmx="0" maxdmx="9" />
<range type="linear" mindmx="10" maxdmx="255" minval="0" maxval="10" />
</strobe>
<shutter dmxchannel="1">
<step type="closed" mindmx="0" maxdmx="4"/>
<step type="open" mindmx="5" maxdmx="9"/>
</shutter>
<strobe dmxchannel="1">
<step type="open" mindmx="0" maxdmx="9" />
<range type="linear" mindmx="10" maxdmx="255" minval="0" maxval="10" />
</strobe>
<rotation dmxchannel="2">
<step type="stop" mindmx="0" maxdmx="4" />
<range type="cw" mindmx="5" maxdmx="127" minval="0.1" maxval="5" />
<range type="ccw" mindmx="134" maxdmx="255" minval="0.1" maxval="5" />
</rotation>
</functions>
Display More
Bei den Strobe LEDs ist die Kanalbelegung mit Shutter und Strobe gleich, da hab ich pro LED ein Gerät angelegt, was ich beim Laser aber durch die Rotation eigentlich nicht machen will.
Hat jemand Tipps für mich?
Grüße,
Johannes