China MH Prisma Rotation will nicht

  • Hi Folks,

    mein DDF für meinen neue China MH macht etwas Sorgen.

    Die Prismrotation will nicht.

    anbei das DDF und Kanalbelegung(die iss aber Schrott)

    Prism Kanal 13

    Code
    0-9 open
    10-14 prism still
    15-255 cw rotation

    implementiert

    Code
    <prism dmxchannel="12">
    <prismrotation dmxchannel="12">
    <step type="stop" mindmx="11" maxdmx="14" />
    <range type="cw" mindmx="15" maxdmx="255" minval="0" maxval="100" />
    </prismrotation>
    <prismindex dmxchannel="12" />
    <step type="open" mindmx="0" maxdmx="9" caption="open" />
    <step type="prism" mindmx="10" maxdmx="10" caption="3-facet" />
    </prism>

    Danke für eure Hilfe

    Maik

  • XML
         <prism dmxchannel="12">
            <prismrotation />
            <step type="open" mindmx="0" maxdmx="9" caption="Open" />
            <step type="prism" mindmx="10" maxdmx="255" caption="3-facets radial prism"/>
            <step type="stop" handler="prismrotation" mindmx="10" maxdmx="14" />
                <range type="cw" handler="prismrotation" mindmx="15" maxdmx="255" minval="0.1" maxval="3" />
            </step>
        </prism>

    Probiere das mal...

  • Genau. Der Punkt ist, dass DMXControl 3 wissen muss, dass die Rotation auf dem gleichen DMX-Kanal liegt wie das Einfahren des Prisma. Deswegen das <prismrotation /> und handler="prismrotation". Deswegen funktioniert deine Variante nicht, weil die dafür konzipiert ist, dass Geschwindigkeit über einen separaten DMX-Kanal eingestellt. Im Wiki ist dies in der Doku so entsprechend dokumentiert.

  • Hi,

    nach langem probieren

    so gehts.

    Gruß Maik

  • Ich habe nochmal geschaut. In der Variante von nutzer99 war noch ein Fehler in der Zeile 87: der Tag war geschlossen. Er muss aber aber offen bleiben, damit die beiden Subtags angezogen und verarbeitet werden.

    XML
      <prism dmxchannel="12">
        <prismrotation />
        <step type="open" mindmx="0" maxdmx="9" caption="Open" />
        <step type="prism" mindmx="10" maxdmx="255" caption="3-facets radial prism" >
          <step type="stop" handler="prismrotation" mindmx="10" maxdmx="14" />
          <range type="cw" handler="prismrotation" mindmx="15" maxdmx="255" minval="0.1" maxval="3" />
        </step>
      </prism>
  • Newly created posts will remain inaccessible for others until approved by a moderator. The last reply was more than 365 days ago, this thread is most likely obsolete. It is recommended to create a new thread instead.