Ankündigung

Einklappen
Keine Ankündigung bisher.

Manche Gruppenadresse wollen einfach nicht funktionieren...

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

    Manche Gruppenadresse wollen einfach nicht funktionieren...

    Hallo!

    Mein LED-Dimmer (Mega2560, Siemens BCU) und Lib Beta 4 macht Probleme, die ich mir gar nicht erklären kann.

    Ich nutze GAs mit HG >15 in dem ich das XML manuell bearbeite und dann in der Suite programmiere.

    Jetzt hab ich so einige Gruppenadresse, die funktionieren einfach nicht. Sprich, die Reaktion bleibt aus. Setzte ich das KO auf eine andere GA, funktioniert es.

    Geht nicht:
    30/1/7
    30/1/8
    29/6/3

    Funktionieren:
    29/5/255
    28/2/1
    29/0/0

    Der nächste Schritt wäre das Gerät mal auszubauen, eine Debug-FW flashen und per seriell schauen woran es happert.
    Wenn aber euch Lib-Experten auf die Schnelle einfällt was es sein könnte, würde mir das n Haufen Arbeit sparen.

    Jemand ne Idee?
    OpenKNX www.openknx.de | NanoBCU und OpenKNX-HW verfügbar

    #2
    Bastele einen einfachen Sketch, oder nimm einen Test Sketch und teste deine Adressen durch. Wenn funktioniert, dann muss man tiefer graben

    Kommentar


      #3
      ach dashab ich ganz vergessen, auf einem anderen Gerät (ItsyBitsy M0 mit µBCU) da hat dann zumindest bei einem schnellen Test die 30/1/7 funktioniert..
      OpenKNX www.openknx.de | NanoBCU und OpenKNX-HW verfügbar

      Kommentar


        #4
        Die funktionierenden GAs sind alle kleiner (in der 1-Ebenen-Dezimaldarstellung) als die nicht-funktionierenden. Zwischen 29/5/255 und 29/6/3 liegt wohl die größte GA, die dein Dimmer verträgt (warum auch immer). Du kannst ja noch 29/6/0-2 ausprobieren. Oder als Gegenbeweis für meine Theorie eine funktionierende GA größer als 29/6/3 finden.

        Kommentar


          #5
          Hier das Macro das die Umrechung im Arduino-Code vornimmt:
          https://github.com/KONNEKTING/Konnek...nxDevice.h#L46

          Und hier der Java-Part auf Seite der Suite:
          https://github.com/calimero-project/...ress.java#L287

          Vielleicht ist damit in Verbindung ja der Wurm drin?! Hab das noch nicht im Detail geprüft. Aber so auf den ersten Blick unterscheidet sich das ein wenig voneinander.

          Kommentar


            #6
            auf den ersten Blick passt das:

            Code:
            { return (word) ( ((maingrp&0x1F)<<11) + ((midgrp&0x7)<<8) + subgrp ); }
            
            address = main << 11 | middle << 8 | sub;
            + und | sind eigentlich gleichwertig, sub ist einwertig, middlegroup 8 bit nach links, haupt 11. Damit hat die Haupt 5Bit, die Middle 3Bit.
            Genau wie spezifiziert.

            Ich hab eben auch mal geschaut was in den Programmiertelegramen steht:

            EDFF für 29/5/255 und EE00 für 29/6/0.

            Und genau ab EE00 geht nichts mehr.

            Mittlerweile ist die Grenze ab der nichts mehr geht auch mal nach oben und unten "gewandert" - kann mir nur wenig Reim darauf machen.

            Wie sind denn die Gruppenadressen/KOs im Speicher organisiert? Könnte es sein, dass diese sortiert da liegen und ich irgendeine Grenze knacke?
            Oder Laufzeit??

            Ich merke nämlich gerade, dass die "nächst-größere GA" geht, sobald ich eine kleine unten irgendwo lösche.

            Ich hab auch recht viele KOs und GAs - 61 KO.
            Aktuell sind 34 mit GAs belegt.
            Und die beiden größten werden nicht empfangen - senden kann das Gerät sie.
            32 funktionieren also.. hört sich nicht so nach Zufall an, genau 2^5.
            OpenKNX www.openknx.de | NanoBCU und OpenKNX-HW verfügbar

            Kommentar


              #7
              Hm. Das mit den "die 32 kleinsten GAs gehen" stimmt so nicht. Ich hab nun auf 30 GAs reduziert, nun gehen 29.

              Ich hab zB KO 44 auf 30/6/4 und KO 45 auf 30/6/3.
              => Device reagiert auf 30/6/3, auf 30/6/4 nicht.

              Setze ich nun KO 44 auf 30/6/2:
              => Device reagiert auf 30/6/2, auf 30/6/3 nicht (mehr).

              OpenKNX www.openknx.de | NanoBCU und OpenKNX-HW verfügbar

              Kommentar


                #8
                Was ich nun noch getestet habe war einmal alle KOs mit 1/7/200 - 1/7/247 belegt.
                Hier tritt das Problem nicht auf.

                Ich hab nun aber ein Debug-Sketch geladen und kann auch da das Problem nachstellen.
                Was sich nun zeigt: Es gibt keinerlei Debug-Ausgaben wenn ich ein entsprechendes GA-Telegramm sende.
                Normal kommt ja sowas wie:

                20:40:35.708 -> konnektingKnxEvents index=44
                20:40:35.708 -> internalComObject index=44

                von der Lib. Hier: Schweigen im Walde.
                Daher muss es für mich an der Lib liegen.
                Kann mir hier einer der Lib-Profis vielleicht weiterhelfen wo ich Code instrumentiren kann bzw. ob es erweitere Debugging-Möglichkeiten gibt?


                Das ist die xml,Sketch liegt hier (https://github.com/SirSydom/konnekti...to_dim12_01_02)
                Code:
                <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
                <KonnektingDevice xmlns="http://konnekting.de/xml/KonnektingDevice/v0">
                    <Device ManufacturerId="7337" DeviceId="3" Revision="0">
                        <ManufacturerName>SirSydom KNX Labs</ManufacturerName>
                        <DeviceName>LED-Dimmer 12channel</DeviceName>
                        <Parameters>
                            <ParameterGroup Name="General" Id="0">
                                <Parameter Id="0" IdName="ch_abc_mode">
                                    <Description>Operating Mode Channel ABC</Description>
                                    <Value Type="uint8" Default="00" Options="00=3channel|01=RGB"/>
                                </Parameter>
                                <Parameter Id="1" IdName="ch_efg_mode">
                                    <Description>Operating Mode Channel EFG</Description>
                                    <Value Type="uint8" Default="00" Options="00=3channel|01=RGB"/>
                                </Parameter>
                                <Parameter Id="2" IdName="ch_ijk_mode">
                                    <Description>Operating Mode Channel IJK</Description>
                                    <Value Type="uint8" Default="00" Options="00=3channel|01=RGB"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel A" Id="1">
                                <Parameter Id="3" IdName="ch_a_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="4" IdName="ch_a_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel B" Id="2">
                                <Parameter Id="5" IdName="ch_b_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="6" IdName="ch_b_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel C" Id="3">
                                <Parameter Id="7" IdName="ch_c_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="8" IdName="ch_c_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel D" Id="4">
                                <Parameter Id="9" IdName="ch_d_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="10" IdName="ch_d_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel E" Id="5">
                                <Parameter Id="11" IdName="ch_e_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="12" IdName="ch_e_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel F" Id="6">
                                <Parameter Id="13" IdName="ch_f_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="14" IdName="ch_f_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel G" Id="7">
                                <Parameter Id="15" IdName="ch_g_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="16" IdName="ch_g_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel H" Id="8">
                                <Parameter Id="17" IdName="ch_h_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="18" IdName="ch_h_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel I" Id="9">
                                <Parameter Id="19" IdName="ch_i_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="20" IdName="ch_i_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel J" Id="10">
                                <Parameter Id="21" IdName="ch_j_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="22" IdName="ch_j_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel K" Id="11">
                                <Parameter Id="23" IdName="ch_k_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="24" IdName="ch_k_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel L" Id="12">
                                <Parameter Id="25" IdName="ch_l_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="26" IdName="ch_l_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel ABC" Id="13">
                                <Parameter Id="27" IdName="ch_abc_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="28" IdName="ch_abc_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel EFG" Id="14">
                                <Parameter Id="29" IdName="ch_efg_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="30" IdName="ch_efg_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                            <ParameterGroup Name="Channel IJK" Id="15">
                                <Parameter Id="31" IdName="ch_ijk_sw_on_dim">
                                    <Description>Switch On at Dimm</Description>
                                    <Value Type="uint8" Default="01" Options="00=disabled|01=enabled"/>
                                </Parameter>
                                <Parameter Id="32" IdName="ch_ijk_fade_time">
                                    <Description>Fading Time [x100ms]</Description>
                                    <Value Type="uint8" Default="00"/>
                                </Parameter>
                            </ParameterGroup>
                        </Parameters>
                        <CommObjects>
                            <CommObject Id="0" IdName="ch_a_sw">
                                <Name>Channel A</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="1" IdName="ch_a_dim">
                                <Name>Channel A</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="2" IdName="ch_a_stat_sw">
                                <Name>Channel A</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="3" IdName="ch_a_stat_dim">
                                <Name>Channel A</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="4" IdName="ch_b_sw">
                                <Name>Channel B</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="5" IdName="ch_b_dim">
                                <Name>Channel B</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="6" IdName="ch_b_stat_sw">
                                <Name>Channel B</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="7" IdName="ch_b_stat_dim">
                                <Name>Channel B</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="8" IdName="ch_c_sw">
                                <Name>Channel C</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="9" IdName="ch_c_dim">
                                <Name>Channel C</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="10" IdName="ch_c_stat_sw">
                                <Name>Channel C</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="11" IdName="ch_c_stat_dim">
                                <Name>Channel C</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="12" IdName="ch_d_sw">
                                <Name>Channel D</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="13" IdName="ch_d_dim">
                                <Name>Channel D</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="14" IdName="ch_d_stat_sw">
                                <Name>Channel D</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="15" IdName="ch_d_stat_dim">
                                <Name>Channel D</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="16" IdName="ch_e_sw">
                                <Name>Channel E</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="17" IdName="ch_e_dim">
                                <Name>Channel E</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="18" IdName="ch_e_stat_sw">
                                <Name>Channel E</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="19" IdName="ch_e_stat_dim">
                                <Name>Channel E</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="20" IdName="ch_f_sw">
                                <Name>Channel F</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="21" IdName="ch_f_dim">
                                <Name>Channel F</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="22" IdName="ch_f_stat_sw">
                                <Name>Channel F</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="23" IdName="ch_f_stat_dim">
                                <Name>Channel F</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="24" IdName="ch_g_sw">
                                <Name>Channel G</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="25" IdName="ch_g_dim">
                                <Name>Channel G</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="26" IdName="ch_g_stat_sw">
                                <Name>Channel G</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="27" IdName="ch_g_stat_dim">
                                <Name>Channel G</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="28" IdName="ch_h_sw">
                                <Name>Channel H</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="29" IdName="ch_h_dim">
                                <Name>Channel H</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="30" IdName="ch_h_stat_sw">
                                <Name>Channel H</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="31" IdName="ch_h_stat_dim">
                                <Name>Channel H</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="32" IdName="ch_i_sw">
                                <Name>Channel I</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="33" IdName="ch_i_dim">
                                <Name>Channel I</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="34" IdName="ch_i_stat_sw">
                                <Name>Channel I</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="35" IdName="ch_i_stat_dim">
                                <Name>Channel I</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="36" IdName="ch_j_sw">
                                <Name>Channel J</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="37" IdName="ch_j_dim">
                                <Name>Channel J</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="38" IdName="ch_j_stat_sw">
                                <Name>Channel J</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="39" IdName="ch_j_stat_dim">
                                <Name>Channel J</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="40" IdName="ch_k_sw">
                                <Name>Channel K</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="41" IdName="ch_k_dim">
                                <Name>Channel K</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="42" IdName="ch_k_stat_sw">
                                <Name>Channel K</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="43" IdName="ch_k_stat_dim">
                                <Name>Channel K</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="44" IdName="ch_l_sw">
                                <Name>Channel L</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="45" IdName="ch_l_dim">
                                <Name>Channel L</Name>
                                <Function>Dimming Absolute</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="46" IdName="ch_l_stat_sw">
                                <Name>Channel L</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="47" IdName="ch_l_stat_dim">
                                <Name>Channel L</Name>
                                <Function>Status Dimming Value</Function>
                                <DataPointType>5.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="48" IdName="ch_abc_sw">
                                <Name>Channel ABC</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="49" IdName="ch_abc_dim">
                                <Name>Channel ABC</Name>
                                <Function>Color</Function>
                                <DataPointType>232.600</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="50" IdName="ch_abc_stat_sw">
                                <Name>Channel ABC</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="51" IdName="ch_abc_stat_dim">
                                <Name>Channel ABC</Name>
                                <Function>Status Color</Function>
                                <DataPointType>232.600</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="52" IdName="ch_efg_sw">
                                <Name>Channel EFG</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="53" IdName="ch_efg_dim">
                                <Name>Channel EFG</Name>
                                <Function>Color</Function>
                                <DataPointType>232.600</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="54" IdName="ch_efg_stat_sw">
                                <Name>Channel EFG</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="55" IdName="ch_efg_stat_dim">
                                <Name>Channel EFG</Name>
                                <Function>Status Color</Function>
                                <DataPointType>232.600</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="56" IdName="ch_ijk_sw">
                                <Name>Channel IJK</Name>
                                <Function>Switch</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="57" IdName="ch_ijk_dim">
                                <Name>Channel IJK</Name>
                                <Function>Color</Function>
                                <DataPointType>232.600</DataPointType>
                                <Flags>40</Flags>
                            </CommObject>
                            <CommObject Id="58" IdName="ch_ijk_stat_sw">
                                <Name>Channel IJK</Name>
                                <Function>Status On/Off</Function>
                                <DataPointType>1.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="59" IdName="ch_ijk_stat_dim">
                                <Name>Channel IJK</Name>
                                <Function>Status Color</Function>
                                <DataPointType>232.600</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="60" IdName="gen_casetemp">
                                <Name>Global</Name>
                                <Function>Case temp</Function>
                                <DataPointType>9.001</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                            <CommObject Id="61" IdName="gen_temp_alarm">
                                <Name>Global</Name>
                                <Function>Temp alarm</Function>
                                <DataPointType>1.005</DataPointType>
                                <Flags>52</Flags>
                            </CommObject>
                        </CommObjects>
                        <Dependencies>
                            <ParameterGroupDependency ParamGroupId="1" TestParamId="0" Test="eq" TestValue="00"/>
                            <ParameterGroupDependency ParamGroupId="2" TestParamId="0" Test="eq" TestValue="00"/>
                            <ParameterGroupDependency ParamGroupId="3" TestParamId="0" Test="eq" TestValue="00"/>
                            <ParameterGroupDependency ParamGroupId="13" TestParamId="0" Test="eq" TestValue="01"/>
                            <ParameterGroupDependency ParamGroupId="5" TestParamId="1" Test="eq" TestValue="00"/>
                            <ParameterGroupDependency ParamGroupId="6" TestParamId="1" Test="eq" TestValue="00"/>
                            <ParameterGroupDependency ParamGroupId="7" TestParamId="1" Test="eq" TestValue="00"/>
                            <ParameterGroupDependency ParamGroupId="14" TestParamId="1" Test="eq" TestValue="01"/>
                            <ParameterGroupDependency ParamGroupId="9" TestParamId="2" Test="eq" TestValue="00"/>
                            <ParameterGroupDependency ParamGroupId="10" TestParamId="2" Test="eq" TestValue="00"/>
                            <ParameterGroupDependency ParamGroupId="11" TestParamId="2" Test="eq" TestValue="00"/>
                            <ParameterGroupDependency ParamGroupId="15" TestParamId="2" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="0" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="1" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="2" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="3" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="4" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="5" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="6" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="7" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="8" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="9" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="10" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="11" TestParamId="0" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="48" TestParamId="0" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="49" TestParamId="0" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="50" TestParamId="0" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="51" TestParamId="0" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="16" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="17" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="18" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="19" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="20" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="21" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="22" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="23" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="24" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="25" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="26" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="27" TestParamId="1" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="52" TestParamId="1" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="53" TestParamId="1" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="54" TestParamId="1" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="55" TestParamId="1" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="32" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="33" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="34" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="35" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="36" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="37" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="38" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="39" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="40" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="41" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="42" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="43" TestParamId="2" Test="eq" TestValue="00"/>
                            <CommObjectDependency CommObjId="56" TestParamId="2" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="57" TestParamId="2" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="58" TestParamId="2" Test="eq" TestValue="01"/>
                            <CommObjectDependency CommObjId="59" TestParamId="2" Test="eq" TestValue="01"/>
                        </Dependencies>
                    </Device>
                    <Configuration ManufacturerId="7337" DeviceId="3" Revision="0">
                        <IndividualAddress Address="1.1.51" Description="DIM2 Konnekting 12ch LED Dimmer 5CC/4CV"/>
                        <CommObjectConfigurations>
                            <CommObjectConfiguration Id="0" GroupAddress="31/7/200" Description="Flur EG - Licht - Wand Süd" active="true"/>
                            <CommObjectConfiguration Id="1" GroupAddress="31/7/201" active="true"/>
                            <CommObjectConfiguration Id="2" GroupAddress="31/7/202" active="true"/>
                            <CommObjectConfiguration Id="3" GroupAddress="31/7/203" active="true"/>
                            <CommObjectConfiguration Id="4" GroupAddress="31/7/204" active="true"/>
                            <CommObjectConfiguration Id="5" GroupAddress="31/7/205" active="true"/>
                            <CommObjectConfiguration Id="6" GroupAddress="31/7/206" active="true"/>
                            <CommObjectConfiguration Id="7" GroupAddress="31/7/207" active="true"/>
                            <CommObjectConfiguration Id="8" GroupAddress="31/7/208" active="true"/>
                            <CommObjectConfiguration Id="9" GroupAddress="31/7/209" active="true"/>
                            <CommObjectConfiguration Id="10" GroupAddress="31/7/210" active="true"/>
                            <CommObjectConfiguration Id="11" GroupAddress="31/7/211" active="true"/>
                            <CommObjectConfiguration Id="12" GroupAddress="31/7/212" active="true"/>
                            <CommObjectConfiguration Id="13" GroupAddress="31/7/213" active="true"/>
                            <CommObjectConfiguration Id="14" GroupAddress="31/7/214" active="true"/>
                            <CommObjectConfiguration Id="15" GroupAddress="31/7/215" active="true"/>
                            <CommObjectConfiguration Id="16" GroupAddress="31/7/216" active="true"/>
                            <CommObjectConfiguration Id="17" GroupAddress="31/7/217" active="true"/>
                            <CommObjectConfiguration Id="18" GroupAddress="31/7/218" active="true"/>
                            <CommObjectConfiguration Id="19" GroupAddress="31/7/219" active="true"/>
                            <CommObjectConfiguration Id="20" GroupAddress="31/7/220" active="true"/>
                            <CommObjectConfiguration Id="21" GroupAddress="31/7/221" active="true"/>
                            <CommObjectConfiguration Id="22" GroupAddress="31/7/222" active="true"/>
                            <CommObjectConfiguration Id="23" GroupAddress="31/7/223" active="true"/>
                            <CommObjectConfiguration Id="24" GroupAddress="31/7/224" active="true"/>
                            <CommObjectConfiguration Id="25" GroupAddress="31/7/225" active="true"/>
                            <CommObjectConfiguration Id="26" GroupAddress="31/7/226" active="true"/>
                            <CommObjectConfiguration Id="27" GroupAddress="31/7/227" active="true"/>
                            <CommObjectConfiguration Id="28" GroupAddress="31/7/228" active="true"/>
                            <CommObjectConfiguration Id="29" GroupAddress="31/7/229" active="true"/>
                            <CommObjectConfiguration Id="30" GroupAddress="31/7/230" active="true"/>
                            <CommObjectConfiguration Id="31" GroupAddress="31/7/231" active="true"/>
                            <CommObjectConfiguration Id="32" GroupAddress="31/7/232" active="true"/>
                            <CommObjectConfiguration Id="33" GroupAddress="31/7/233" active="true"/>
                            <CommObjectConfiguration Id="34" GroupAddress="31/7/234" active="true"/>
                            <CommObjectConfiguration Id="35" GroupAddress="31/7/235" active="true"/>
                            <CommObjectConfiguration Id="36" GroupAddress="31/7/236" active="true"/>
                            <CommObjectConfiguration Id="37" GroupAddress="31/7/237" active="true"/>
                            <CommObjectConfiguration Id="38" GroupAddress="31/7/238" active="true"/>
                            <CommObjectConfiguration Id="39" GroupAddress="31/7/239" active="true"/>
                            <CommObjectConfiguration Id="40" GroupAddress="31/7/240" Description="" active="true"/>
                            <CommObjectConfiguration Id="41" GroupAddress="31/7/241" Description="Außen - Licht - LED Eingang Dim" active="true"/>
                            <CommObjectConfiguration Id="42" GroupAddress="31/7/242" Description="Außen - Licht - LED Eingang Status" active="true"/>
                            <CommObjectConfiguration Id="43" GroupAddress="31/7/243" Description="Außen - Licht - LED Eingang Dim Status" active="true"/>
                            <CommObjectConfiguration Id="44" GroupAddress="31/7/244" Description="Flur EG - Licht - Glas-LED" active="true"/>
                            <CommObjectConfiguration Id="45" GroupAddress="31/7/245" active="true"/>
                            <CommObjectConfiguration Id="46" GroupAddress="31/7/246" active="true"/>
                            <CommObjectConfiguration Id="47" GroupAddress="31/7/247" active="true"/>
                            <CommObjectConfiguration Id="48" active="false"/>
                            <CommObjectConfiguration Id="49" active="false"/>
                            <CommObjectConfiguration Id="50" active="false"/>
                            <CommObjectConfiguration Id="51" active="false"/>
                            <CommObjectConfiguration Id="52" active="false"/>
                            <CommObjectConfiguration Id="53" active="false"/>
                            <CommObjectConfiguration Id="54" active="false"/>
                            <CommObjectConfiguration Id="55" active="false"/>
                            <CommObjectConfiguration Id="56" active="false"/>
                            <CommObjectConfiguration Id="57" active="false"/>
                            <CommObjectConfiguration Id="58" active="false"/>
                            <CommObjectConfiguration Id="59" active="false"/>
                            <CommObjectConfiguration Id="60" GroupAddress="" active="true"/>
                            <CommObjectConfiguration Id="61" GroupAddress="" active="true"/>
                        </CommObjectConfigurations>
                        <ParameterConfigurations>
                            <ParameterConfiguration Id="0" Value="00"/>
                            <ParameterConfiguration Id="1" Value="00"/>
                            <ParameterConfiguration Id="2" Value="00"/>
                            <ParameterConfiguration Id="3" Value="01"/>
                            <ParameterConfiguration Id="4" Value="00"/>
                            <ParameterConfiguration Id="5" Value="01"/>
                            <ParameterConfiguration Id="6" Value="00"/>
                            <ParameterConfiguration Id="7" Value="01"/>
                            <ParameterConfiguration Id="8" Value="00"/>
                            <ParameterConfiguration Id="9" Value="01"/>
                            <ParameterConfiguration Id="10" Value="00"/>
                            <ParameterConfiguration Id="11" Value="01"/>
                            <ParameterConfiguration Id="12" Value="00"/>
                            <ParameterConfiguration Id="13" Value="01"/>
                            <ParameterConfiguration Id="14" Value="00"/>
                            <ParameterConfiguration Id="15" Value="01"/>
                            <ParameterConfiguration Id="16" Value="00"/>
                            <ParameterConfiguration Id="17" Value="01"/>
                            <ParameterConfiguration Id="18" Value="00"/>
                            <ParameterConfiguration Id="19" Value="01"/>
                            <ParameterConfiguration Id="20" Value="00"/>
                            <ParameterConfiguration Id="21" Value="01"/>
                            <ParameterConfiguration Id="22" Value="00"/>
                            <ParameterConfiguration Id="23" Value="00"/>
                            <ParameterConfiguration Id="24" Value="01"/>
                            <ParameterConfiguration Id="25" Value="01"/>
                            <ParameterConfiguration Id="26" Value="01"/>
                            <ParameterConfiguration Id="27" Value="01"/>
                            <ParameterConfiguration Id="28" Value="00"/>
                            <ParameterConfiguration Id="29" Value="01"/>
                            <ParameterConfiguration Id="30" Value="00"/>
                            <ParameterConfiguration Id="31" Value="01"/>
                            <ParameterConfiguration Id="32" Value="00"/>
                        </ParameterConfigurations>
                    </Configuration>
                </KonnektingDevice>
                OpenKNX www.openknx.de | NanoBCU und OpenKNX-HW verfügbar

                Kommentar


                  #9
                  nach langer Suche habe ich den Bug endlich gefunden!

                  https://gitlab.com/konnekting/Konnek...rary/issues/73
                  OpenKNX www.openknx.de | NanoBCU und OpenKNX-HW verfügbar

                  Kommentar

                  Lädt...
                  X