Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Test Adapter OpenKNX 0.6.x

    NEWS

    • ioBroker goes Matter ... Matter Adapter in Stable

    • 15. 05. Wartungsarbeiten am ioBroker Forum

    • Monatsrückblick - April 2025

    Test Adapter OpenKNX 0.6.x

    This topic has been deleted. Only users with topic management privileges can see it.
    • B
      beetlejules @killroy2 last edited by

      @killroy2 Der Wert {"decr_incr":1,"data":1} kommt vom Adapter, kein Problem, bekomme auch keine Fehlermeldung.
      Allerdings wenn ich ihn jetzt vergleiche in der if Abfrage, passiert nichts.
      Der debug in der trigger Funktion spuckt mir 'trigger' aus wenn ich schalte. Die if Anweisung spuckt aber kein 'dimup' aus.
      Wert vom Adapter wird also nicht mit dem hier mal direkt in den Code geschriebenen {"decr_incr":1,"data":1} als gleich angesehen.

      Adapterversion ist die 0.1.22

      on({id: 'openknx.0.Dimmaktoren.Helligkeit_relativ.Küche_Deckenleuchte_Helligkeit_relativ', change: "ne"}, async function (obj) {
        var value = obj.oldState.val;
        var oldValue = obj.oldState.val;
        console.warn('trigger');
        // Dimmen hoch
        if ({"decr_incr":1,"data":1} == getState("openknx.0.Dimmaktoren.Helligkeit_relativ.Küche_Deckenleuchte_Helligkeit_relativ").val) {
          setState("hue.0.Küche_Deckenleuchte.command", ('' + (['{"bri_inc":254,"transitiontime":10,"ct":',getState("0_userdata.0.Beleuchtung.adaptiveCtSolar").val,'}'].join(''))));
          console.warn('dimup');
        }
      });
      
      K 1 Reply Last reply Reply Quote 0
      • K
        killroy2 @beetlejules last edited by

        @beetlejules Wenn du auf Objekte schreibst, wird kein ACK Flag generiert. Deswegen wird deine Funktion nicht aufgerufen. Wenn du Werte empfängst, wird das ACK Flag generiert. So ist das Konzept vom Adapter. Ich vermute deshalb, wenn du mit ETS von aussen sendest, wie es denke ich dein Anwendungsfall ist, wird es gehen.

        B 1 Reply Last reply Reply Quote 0
        • B
          beetlejules @killroy2 last edited by

          @killroy2 Ich weiß nicht genau ob ich dich richtig verstehe. Sorry 😛
          Wenn ich aus der ETS bzw. vom Schalter hoch dimmen sende, also so im Busmonitor zu sehen
          ETSdimup.png

          kommt im openKNX objekt ja dies an
          UserdataNeu.png
          Weshalb lässt sich dieses Objekt nicht einfach vergleichen mit nem userdata Objekt oder wie oben, etwas handgeschriebenem?

          K 1 Reply Last reply Reply Quote 0
          • K
            killroy2 @beetlejules last edited by

            @beetlejules noch eine Verständnisfrage: warum ist der Wert bei dir rot? 1,1 passt zu $09, ändert sich die Anzeige wenn du einen anderen Wert schickst?

            B 1 Reply Last reply Reply Quote 0
            • B
              beetlejules @killroy2 last edited by

              @killroy2 Sorry, das ist der userdata Wert den ich manuell eingetragen hab.
              Der Wert vom openKNX Objekt ist der Gleiche aber der ist Grün bei neuem Wert und Wechselt zu Schwarz bzw. Weiß.

              Mittlerweile habe ich eine Lösung die für mich ausreicht.
              Ich habe mir jetzt anders beholfen und vergleiche nicht den ".val" Wert sondern die einzelnen Datenpunkte:
              ".val.decr_incr" mit 1 oder 0 und "val.data" mit 1 oder 0 und baue mir daraus hoch, runter und stop dimmen.

              1 Reply Last reply Reply Quote 0
              • P
                ple last edited by

                Moin Moin,
                zunächst mal vielen Dank für den Adapter. Ich stecke aktuell noch mitten in der Sanierung des Elternhauses welches 244qm und 18 Zimmer hat.
                Jeder Raum ist soweit mit Bewegungsmelder und MDT Gastaster ausgestattet. Ich hatte mir mal eine Grundfunktion der Benennung der GA überlegt, aber scheint wohl nicht das richtige zu sein.

                Nun zu meiner Frage, wie habt ihr eure GA benannt, damit diese auch direkt mit den Adapter funktionieren?
                ich würde mich über Beispiele freuen, damit ich nicht alles doppelt machen muss.

                Gruß und Danke

                T 1 Reply Last reply Reply Quote 0
                • T
                  Tontechniker @ple last edited by

                  @ple Hallo! Hast Du Dich schon intensiver mit EIB/KNX beschäftiget? Die Struktur, die Du in der ETS anlegs ist eine wichtige Sache. Hier mal eine Kostprobe mit den 12 Goldenen Regeln.
                  Die_12_goldenen_Regeln_zu_EIBKNX.pdf
                  Gruß
                  Hans

                  P 1 Reply Last reply Reply Quote 0
                  • T
                    Tontechniker last edited by Tontechniker

                    Gelöscht, s.u.!

                    1 Reply Last reply Reply Quote 0
                    • P
                      ple @Tontechniker last edited by

                      @tontechniker

                      Jo, eigentlich ist es soweit klar. Komme eigentlich aus der SPS Welt, das ist schon ne Umstellung, wenn ein Sensor nur an eine GA senden kann.
                      Daher hapert es bei mir auch an der Struktur und suche eigentlich Beispiele um mir ein wenig Input zu besorgen.
                      Ein Beispiel wäre Bewegungsmelder, da weiß ich noch nicht, ob ich dafür eine eigene Mittelgruppe mache und dort alle Aktor KO reinschiebe, die der Melder schalten soll, oder lass ich die komplett weg und schiebe mit das schalten KO vom BW in die Mittelgruppe Beleuchtung An/Aus.
                      Bei der letzten Variante ist es ein wenig blöde, weil wenn der BW noch was schalten soll, muss das schon in der GA mit rein.

                      Dann wäre noch die Benennung der GA´s, selbst da bin ich noch ein wenig unschlüssig, da ich gerne möchte, das der Adapter die Schalten GA´s und passend zu den Status GA´s verbindet.
                      Aktuell sieht es so aus.

                      3ae40413-6938-44bf-b514-24556297adf6-image.png

                      1 Reply Last reply Reply Quote 0
                      • T
                        Tontechniker @killroy2 last edited by Tontechniker

                        @killroy2
                        Ich bekomme mit der 0.1.23 eine Fehlermeldung.
                        In NodeRed erzeuge ich zyklisch über eine Device-Node (KNX-Ultimate) einen read auf die Gruppenadresse 14/0/10
                        Der read liefert mir dann alle Daten des angesprochenen Gerätes (SmellyOne). Einschließlich bis zur Version 0.1.22 funktionierte dies ohne Fehlermeldung. Ab der 0.1.23 bekomme ich die folgende Meldung:
                        "openknx.0 2022-03-20 12:57:21.546 error (13872) Inbound GroupValue_Read from 15.15.22 GA 14/0/10 to openknx.0.Smelly_One.Smelly_One.Daten_abrufen"
                        Der Abruf der Daten funktioniert nach wie vor ohne Probleme!
                        Hast Du dafür eine Erklärung?

                        K 1 Reply Last reply Reply Quote 0
                        • K
                          killroy2 @Tontechniker last edited by

                          @tontechniker said in Test Adapter OpenKNX 0.1.x: Ist ein Anzeigefehler im Adapter

                          T 1 Reply Last reply Reply Quote 1
                          • T
                            Tontechniker @killroy2 last edited by

                            @killroy2 Vielen Dank für Deine Antwort!
                            Gruß
                            Hans

                            1 Reply Last reply Reply Quote 0
                            • Percy
                              Percy last edited by

                              Hat noch jemand Probleme mit der Darstellung von ISO Strings? (DPT 16.001)

                              In der ETS ist der Typ richtig eingestellt, im ioBroker Datenpunkt eigentlich ebenfalls:

                              61ebe15b-d795-4f91-bece-f24ff899582c-image.png

                              Scheinbar wird der Wert aber dennoch als UTF8 Wert behandelt, aus "Büro OG" wird
                              fa189bdb-3348-4916-8b35-5c37997c08cc-image.png

                              K 1 Reply Last reply Reply Quote 0
                              • K
                                killroy2 @Percy last edited by

                                @percy Kann ich bestätigen, Unterstützung für latin1 baue ich ein..

                                T 1 Reply Last reply Reply Quote 3
                                • K
                                  konetti last edited by konetti

                                  Bei mir ist der Adapter (V 0.1.22) grün und der Import der GAs hat auch geklappt.
                                  Leider werden dei Objekte im ioBroker nicht geändert, wenn ich sie real ändere. Auch ein setzten von Werten bei GAs ist bei mir nicht möglich.
                                  Ich habe ein IP Gateway von MDT. Muss ich da noch irgendwelche Einstellungen vornehmen. Ich habe gesucht, aber nichts gefunden.

                                  EDIT:
                                  Ich habe die Lösung selbst noch gefunden. Bei dem IP Interface von MDT war bei Geräte -> Eigenschaften -> Einstellungen "Secure Tunneling" aktiviert. Ich habe es ausgeschaltet und nun klappt es.

                                  Besten Dank an den Entwickler des Adapters. Der offizielle von KNX funktioniert bei mir nämlich überhaupt nicht.

                                  1 Reply Last reply Reply Quote 0
                                  • T
                                    Tontechniker @killroy2 last edited by Tontechniker

                                    @killroy2 Hallo! 0.1.24 läuft bei mir ohne Probleme. Danke!

                                    1 Reply Last reply Reply Quote 1
                                    • T
                                      tro last edited by

                                      Hallo Zusammen,
                                      bei mir verliert der openKNX Adapter v0.1.24 nach einiger Zeit immer wieder die Verbindung zum KNX Bus, hat jemand von euch eine Idee?

                                      Ein Paar Informationen zur Umgebung, allerdings habe ich das ganze auch schon auf einem Raspi4 getestet
                                      und das gleiche Problem festgestellt.

                                      iobroker:
                                      admin v5.2.4
                                      JS-Controller v4.0.21
                                      NodeJS v14.19.1
                                      NPM v6.14.16
                                      openknx v0.1.24

                                      MDT IP Gateway:
                                      Typ SCN-IP000.03
                                      Firmware 3.0.3

                                      Betriebssystem:
                                      Ubuntu 20.04.4 LTS
                                      Release v20.04

                                      Virtualisiert:
                                      Synology VMM v2.5.5 11487
                                      DSM 7.0.1-42218 Update 3

                                      Hier noch ein Ausschnitt aus dem Log:

                                      2022-04-10 01:33:00.166 - warn: openknx.0 (2426811) [warn] "2022-04-09T23:33:00.164Z" 'DPT1.fromBuffer: buf should be 1 byte (got 2 bytes)' 2
                                      2022-04-10 01:33:00.166 - warn: openknx.0 (2426811) Received data length for GA 21/1/2 does not match configured DPT1.001
                                      2022-04-10 01:33:00.268 - warn: openknx.0 (2426811) [warn] "2022-04-09T23:33:00.268Z" 'DPT1.fromBuffer: buf should be 1 byte (got 2 bytes)' 2
                                      2022-04-10 01:33:00.268 - warn: openknx.0 (2426811) Received data length for GA 21/1/1 does not match configured DPT1.001

                                      Ab hier steigt die Verbindung zum KNX Bus aus:

                                      2022-04-10 01:33:41.311 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:33:41.311 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:33:42.315 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:33:42.315 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:33:43.219 - warn: openknx.0 (2426811) event received before initialisation
                                      2022-04-10 01:33:43.220 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:33:43.221 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:33:43.224 - info: openknx.0 (2426811) Connected!
                                      2022-04-10 01:33:43.264 - info: openknx.0 (2426811) State value to set for "openknx.0.Heizung_Warmwasser.UG.HZ_UG_Bad_Soll_Komfort" has to be type "number" but received type "string"
                                      2022-04-10 01:33:44.150 - info: openknx.0 (2426811) State value to set for "openknx.0.Licht_u_BM.Aussen.BM_Vordach_Eingang_EG_Temperatur_Ein" has to be type "boolean" but received type "string"
                                      2022-04-10 01:33:45.314 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:33:45.313 connection timed out, retrying...
                                      2022-04-10 01:33:45.316 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:33:45.315 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:33:48.314 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:33:48.314 connection timed out, retrying...
                                      2022-04-10 01:33:48.317 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:33:48.316 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:33:54.324 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:33:54.323 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:33:57.317 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:33:57.317 connection timed out, retrying...
                                      2022-04-10 01:33:57.319 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:33:57.318 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:00.073 - warn: openknx.0 (2426811) event received before initialisation
                                      2022-04-10 01:34:00.074 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:00.076 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:00.079 - info: openknx.0 (2426811) Connected!
                                      2022-04-10 01:34:00.319 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:00.319 connection timed out, retrying...
                                      2022-04-10 01:34:00.321 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:00.321 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:09.323 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:09.321 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:09.391 - warn: openknx.0 (2426811) event received before initialisation
                                      2022-04-10 01:34:09.392 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:09.394 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:09.398 - info: openknx.0 (2426811) Connected!
                                      2022-04-10 01:34:12.321 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:12.320 connection timed out, retrying...
                                      2022-04-10 01:34:12.323 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:12.323 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:15.321 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:15.320 connection timed out, retrying...
                                      2022-04-10 01:34:15.323 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:15.323 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:24.543 - info: openknx.0 (2426811) State value to set for "openknx.0.Licht_u_BM.EG.L_Treppe_Wand_Dunkel_Status" has to be type "boolean" but received type "string"
                                      2022-04-10 01:34:24.564 - info: openknx.0 (2426811) State value to set for "openknx.0.Licht_u_BM.EG.L_Treppe_Wand_Hell_Status" has to be type "boolean" but received type "string"
                                      2022-04-10 01:34:24.665 - info: openknx.0 (2426811) State value to set for "openknx.0.Licht_u_BM.EG.L_Flur_EG_Decke_Status" has to be type "boolean" but received type "string"
                                      2022-04-10 01:34:27.322 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:27.322 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:29.538 - warn: openknx.0 (2426811) event received before initialisation
                                      2022-04-10 01:34:29.539 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:29.541 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:29.546 - info: openknx.0 (2426811) Connected!
                                      2022-04-10 01:34:30.321 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:30.320 connection timed out, retrying...
                                      2022-04-10 01:34:30.322 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:30.322 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:33.320 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:33.320 connection timed out, retrying...
                                      2022-04-10 01:34:33.322 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:33.322 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:41.255 - info: openknx.0 (2426811) State value to set for "openknx.0.Heizung_Warmwasser.UG.HZ_UG_WZ_Soll_Komfort" has to be type "number" but received type "string"
                                      2022-04-10 01:34:41.332 - info: openknx.0 (2426811) State value to set for "openknx.0.Heizung_Warmwasser.OG.HZ_GZ_OG_Soll_Komfort" has to be type "number" but received type "string"
                                      2022-04-10 01:34:41.610 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:41.610 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:42.615 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:42.615 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:43.225 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:43.225 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:44.227 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:44.229 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:44.229 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:45.537 - warn: openknx.0 (2426811) event received before initialisation
                                      2022-04-10 01:34:45.538 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:45.539 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:45.544 - info: openknx.0 (2426811) Connected!
                                      2022-04-10 01:34:45.613 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:45.612 connection timed out, retrying...
                                      2022-04-10 01:34:45.614 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:45.614 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:47.228 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:47.228 connection timed out, retrying...
                                      2022-04-10 01:34:47.230 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:47.230 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:48.322 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:48.322 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:48.613 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:48.613 connection timed out, retrying...
                                      2022-04-10 01:34:48.615 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:48.614 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:48.750 - warn: openknx.0 (2426811) event received before initialisation
                                      2022-04-10 01:34:48.751 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:48.752 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:48.755 - info: openknx.0 (2426811) Connected!
                                      2022-04-10 01:34:50.230 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:50.228 connection timed out, retrying...
                                      2022-04-10 01:34:50.232 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:50.232 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:51.321 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:51.320 connection timed out, retrying...
                                      2022-04-10 01:34:51.322 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:51.322 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:54.321 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:54.321 connection timed out, retrying...
                                      2022-04-10 01:34:54.323 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:54.322 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:54.614 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:54.614 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:55.447 - warn: openknx.0 (2426811) event received before initialisation
                                      2022-04-10 01:34:55.448 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:55.449 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:34:55.453 - info: openknx.0 (2426811) Connected!
                                      2022-04-10 01:34:56.232 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:56.232 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:57.613 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:57.613 connection timed out, retrying...
                                      2022-04-10 01:34:57.615 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:57.614 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:34:59.232 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:59.232 connection timed out, retrying...
                                      2022-04-10 01:34:59.234 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:34:59.234 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:35:00.066 - warn: openknx.0 (2426811) event received before initialisation
                                      2022-04-10 01:35:00.067 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:35:00.070 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:35:00.076 - info: openknx.0 (2426811) Connected!
                                      2022-04-10 01:35:00.081 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:00.080 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:35:00.613 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:00.613 connection timed out, retrying...
                                      2022-04-10 01:35:00.615 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:00.615 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:35:01.086 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:01.086 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:35:01.100 - warn: openknx.0 (2426811) event received before initialisation
                                      2022-04-10 01:35:01.101 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:35:01.106 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:35:01.110 - info: openknx.0 (2426811) Connected!
                                      2022-04-10 01:35:02.234 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:02.233 connection timed out, retrying...
                                      2022-04-10 01:35:02.236 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:02.236 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:35:04.085 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:04.084 connection timed out, retrying...
                                      2022-04-10 01:35:04.087 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:04.086 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:35:07.086 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:07.085 connection timed out, retrying...
                                      2022-04-10 01:35:07.087 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:07.087 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:35:09.400 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:09.399 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                      2022-04-10 01:35:09.615 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:09.614 Error [ERR_SOCKE
                                      2022-04-10 01:35:10.261 - info: openknx.0 (2426811) Got terminate signal TERMINATE_YOURSELF
                                      2022-04-10 01:35:10.263 - info: openknx.0 (2426811) terminating
                                      2022-04-10 01:35:10.265 - info: openknx.0 (2426811) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                      2022-04-10 01:35:10.401 - warn: openknx.0 (2426811) Connection lost
                                      2022-04-10 01:35:10.402 - warn: openknx.0 (2426811) [warn] 2022-04-09 23:35:10.402 Error [ERR_SOCKET_DG
                                      2022-04-10 01:35:15.419 - info: openknx.0 (2427208) starting. Version 0.1.24 in /opt/iobroker/node_modules/iobroker.openknx, node: v14.19.1, js-controller: 4.0.21
                                      2022-04-10 01:35:15.452 - info: openknx.0 (2427208) Connecting to knx gateway: 172.16.10.82:3671 with phy. Adr: 1.1.255 minimum send delay: 50 ms debug level: info
                                      2022-04-10 01:35:15.453 - info: openknx.0 (2427208) /opt/iobroker/node_modules/iobroker.js-controller
                                      2022-04-10 01:35:15.807 - info: openknx.0 (2427208) Connected!
                                      2022-04-10 01:35:15.914 - info: openknx.0 (2427208) Found 539 valid KNX objects of 541 objects in adapt

                                      openKNX Adapter neu gestartet, danach läuft es wieder einige Zeit:

                                      2022-04-10 01:36:00.258 - warn: openknx.0 (2427208) [warn] "2022-04-09T23:36:00.257Z" 'DPT1.fromBuffer: buf should be 1 byte (got 2 bytes)' 2
                                      2022-04-10 01:36:00.259 - warn: openknx.0 (2427208) Received data length for GA 21/1/2 does not match configured DPT1.001
                                      2022-04-10 01:36:00.482 - warn: openknx.0 (2427208) [warn] "2022-04-09T23:36:00.482Z" 'DPT1.fromBuffer: buf should be 1 byte (got 2 bytes)' 2
                                      2022-04-10 01:36:00.482 - warn: openknx.0 (2427208) Received data length for GA 21/1/1 does not match configured DPT1.001

                                      1 Reply Last reply Reply Quote 0
                                      • T
                                        tro last edited by

                                        Hallo zusammen,
                                        keine eine Idee an was es liegen könnte?

                                        Heute wieder Stillstand, nach einem manuellen Neustart des openknx Adapter geht es wieder.

                                        2022-04-12 21:31:17.926 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:17.926 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:17.926 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:17.926 connection timed out, retrying...
                                        2022-04-12 21:31:17.927 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:17.927 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:17.927 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:17.927 connection timed out, retrying...
                                        2022-04-12 21:31:17.929 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:17.928 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:17.940 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:17.939 connection timed out, retrying...
                                        2022-04-12 21:31:17.940 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:17.940 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:17.983 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:17.983 connection timed out, retrying...
                                        2022-04-12 21:31:17.984 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:17.984 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:18.069 - warn: openknx.0 (2794457) Connection lost
                                        2022-04-12 21:31:18.070 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.070 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:18.086 - warn: openknx.0 (2794457) event received before initialisation
                                        2022-04-12 21:31:18.090 - info: host.server6 stopInstance system.adapter.openknx.0 (force=false, process=true)
                                        2022-04-12 21:31:18.086 - warn: openknx.0 (2794457) Connection lost
                                        2022-04-12 21:31:18.090 - warn: openknx.0 (2794457) Connection lost
                                        2022-04-12 21:31:18.091 - info: openknx.0 (2794457) Connected!
                                        2022-04-12 21:31:18.096 - info: openknx.0 (2794457) Got terminate signal TERMINATE_YOURSELF
                                        2022-04-12 21:31:18.098 - info: openknx.0 (2794457) terminating
                                        2022-04-12 21:31:18.099 - info: openknx.0 (2794457) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                        2022-04-12 21:31:18.107 - warn: openknx.0 (2794457) Connection lost
                                        2022-04-12 21:31:18.109 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.108 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:18.124 - info: host.server6 stopInstance system.adapter.openknx.0 send kill signal
                                        2022-04-12 21:31:18.151 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.151 connection timed out, retrying...
                                        2022-04-12 21:31:18.152 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.152 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:18.244 - warn: openknx.0 (2794457) Connection lost
                                        2022-04-12 21:31:18.245 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.245 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:18.259 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.259 connection timed out, retrying...
                                        2022-04-12 21:31:18.261 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.261 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:18.279 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.279 connection timed out, retrying...
                                        2022-04-12 21:31:18.280 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.280 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:18.362 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.362 connection timed out, retrying...
                                        2022-04-12 21:31:18.363 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.363 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:18.412 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.412 connection timed out, retrying...
                                        2022-04-12 21:31:18.413 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.413 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
                                        2022-04-12 21:31:18.439 - warn: openknx.0 (2794457) Connection lost
                                        2022-04-12 21:31:18.443 - warn: openknx.0 (2794457) [warn] 2022-04-12 19:31:18.443 Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running

                                        2022-04-12 21:31:22.516 - info: openknx.0 (2968339) starting. Version 0.1.24 in /opt/iobroker/node_modules/iobroker.openknx, node: v14.19.1, js-controller: 4.0.21
                                        2022-04-12 21:31:22.538 - info: openknx.0 (2968339) Connecting to knx gateway: 172.16.10.82:3671 with phy. Adr: 1.1.255 minimum send delay: 50 ms debug level: info
                                        2022-04-12 21:31:22.539 - info: openknx.0 (2968339) /opt/iobroker/node_modules/iobroker.js-controller
                                        2022-04-12 21:31:22.847 - info: openknx.0 (2968339) Connected!
                                        2022-04-12 21:31:22.972 - info: openknx.0 (2968339) Found 539 valid KNX objects of 541 objects in adapter.

                                        2022-04-12 21:33:48.170 - warn: openknx.0 (2968339) possible data loss due to gateway reset, consider increasing frame delay
                                        2022-04-12 21:33:48.171 - info: openknx.0 (2968339) [info] 2022-04-12 19:33:48.169 empty internal fsm queue due to inbound_DISCONNECT_REQUEST:
                                        2022-04-12 21:33:48.697 - info: openknx.0 (2968339) Connected!

                                        L 1 Reply Last reply Reply Quote 0
                                        • L
                                          lessthanmore @tro last edited by

                                          @tro said in Test Adapter OpenKNX 0.1.x:

                                          ERR_SOCKET_DGRAM_NOT_RUNNING

                                          Hast du evtl. noch etwas anderes laufen, was auf KNX zugreift (node-red z. B.) bzw. den gleichen UDP port zugreift?

                                          T 1 Reply Last reply Reply Quote 0
                                          • T
                                            tro @lessthanmore last edited by

                                            @lessthanmore
                                            Node-Red läuft, aber KNX Daten beziehe ich über iob, also keinen eigenen KNX Zugriff über Node-Red.
                                            IOB über openKNX ist der einzige KNX Zugriff aus diesem System.

                                            L 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            924
                                            Online

                                            31.6k
                                            Users

                                            79.5k
                                            Topics

                                            1.3m
                                            Posts

                                            71
                                            571
                                            107575
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo