Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Error/Bug
    4. Zigbee Garagentoröffner PJ-ZGD01 fehlerhaft

    NEWS

    • Neues Video über Aliase, virtuelle Geräte und Kategorien

    • Wir empfehlen: Node.js 22.x

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    Zigbee Garagentoröffner PJ-ZGD01 fehlerhaft

    This topic has been deleted. Only users with topic management privileges can see it.
    • Asgothian
      Asgothian Developer @throstenk last edited by Asgothian

      @throstenk Bitte probieren:

      • Adapter auf die Version aus dem latest aktualisieren (3.0.5) (alternativ: aktuelle Version von GitHub - die ist identisch)
      • den unten beiliegenden Code kopieren und als Datei pj-zgd01_custom.js unter /opt/iobroker/iobroker-data/zigbee_0 ablegen
      • in der Adapter-Konfiguration als 'external converter' den Dateinamen (pj-zgd01-custom.js eintragen
      • Adapter anhalten
      • 30 s Warten (das ist wichtig)
      • Adapter starten, Log beobachten - es sollten Meldungen zu dem externen Konverter im Log auftauchen. Im Zweifelsfall: Log des Startversuchs posten.

      A.

      import * as tuya from '../lib/tuya';
      const {tuyaMagicPacket, dpBinary, dpNumeric, dpEnumLookup} = tuya.modernExtend;
      
      
      const definition = [
          {
              fingerprint: tuya.fingerprint("TS0601", ["_TZE200_nklqjk62", "_TZE204_nklqjk62", "_TZE204_jktmrpoj"]),
              model: "TS0601_garage_door_opener",
              vendor: "Tuya",
              description: "Garage door opener",
              whiteLabel: [
                  tuya.whitelabel("MatSee Plus", "PJ-ZGD01-custom", "Garage door opener", ["_TZE204_nklqjk62"]),
                  tuya.whitelabel("Moes", "ZM-102-M-custom", "Garage door opener", ["_TZE204_jktmrpoj"]),
              ],
              extend: [
                  tuyaMagicPacket(),
                  dpBinary({
                      name: "trigger",
                      dp: 1,
                      type: tuya.dataTypes.bool,
                      valueOn: [true, true],
                      valueOff: [false, false],
                      description:
                          "Request door to close (= false) or open (= true), will not pulse output if contact shows door is already in requested state",
                  }),
                  dpNumeric({
                      name: "countdown",
                      dp: 2,
                      type: tuya.dataTypes.number,
                      description: "Countdown to trigger door movement after a certain time, will pulse output in all cases",
                      unit: "s",
                      valueMin: 0,
                      valueMax: 43200,
                  }),
                  dpBinary({
                      name: "garage_door_contact",
                      dp: 3,
                      type: tuya.dataTypes.bool,
                      valueOn: [true, false],
                      valueOff: [false, true],
                      description: "Indicates if the garage door contact is closed (= true) or open (= false)",
                      readOnly: true,
                  }),
                  dpNumeric({
                      name: "run_time",
                      dp: 4,
                      type: tuya.dataTypes.number,
                      description: "Configure the time to wait for the door contact status to change before triggering a run time alarm",
                      unit: "s",
                      valueMin: 0,
                      valueMax: 120,
                  }),
                  dpNumeric({
                      name: "open_alarm_time",
                      dp: 5,
                      type: tuya.dataTypes.number,
                      description: "Configure the amount of time the door may be open before an open time alarm is triggered",
                      unit: "s",
                      valueMin: 0,
                      valueMax: 86400,
                  }),
                  dpEnumLookup({
                      name: "status",
                      dp: 12,
                      type: tuya.dataTypes.enum,
                      description: "Indicates run time alarm, door open alarm or normal status, will not return to normal until door is triggered again",
                      lookup: {"Open Time Alarm": 0, "Run Time Alarm": 1, Normal: 2},
                      readOnly: true,
                  }),
              ],
          },
      ];
      
      module.export definition;
      
      
      throstenk 1 Reply Last reply Reply Quote 0
      • throstenk
        throstenk @Asgothian last edited by throstenk

        @asgothian ich hab alles durchgeführt hier das log

        2025-09-05 10:08:49.838	info	Adapter ready - starting subsystems. Adapter is running in info mode.
        
        zigbee.0
        2025-09-05 10:08:49.842	warn	External converter not loaded - neither pj-zgd01-custom.js nor /opt/iobroker/iobroker-data/zigbee_0/pj-zgd01-custom.js exist.
        
        zigbee.0
        2025-09-05 10:08:49.844	info	init localConfig
        
        zigbee.0
        2025-09-05 10:08:49.938	info	delete old Backup files. keep only last 10
        
        zigbee.0
        2025-09-05 10:08:49.942	info	--- creating device debug ---
        
        zigbee.0
        2025-09-05 10:08:49.943	info	Autostart Zigbee subsystem
        
        zigbee.0
        2025-09-05 10:08:49.944	info	Starting Adapter npm ...
        
        zigbee.0
        2025-09-05 10:08:49.980	info	Installed Version: iobroker.zigbee@3.0.5 (Converters 24.8.0 Herdsman 4.4.1)
        
        zigbee.0
        2025-09-05 10:08:49.983	info	configured transmit power : high+
        
        zigbee.0
        2025-09-05 10:08:49.984	info	Starting Zigbee-Herdsman
        
        zigbee.0
        2025-09-05 10:08:50.612	info	Zigbee-Herdsman started successfully with Coordinator firmware version: ZStack3x0 : 20230507 (2-1.2.7.1)
        
        zigbee.0
        2025-09-05 10:08:50.615	info	Unable to disable LED, unsupported function.
        
        zigbee.0
        2025-09-05 10:08:51.060	info	0xa4c1387b9ff002f5 (addr 64535): ZG-227ZL - Tuya Temperature & humidity LCD sensor (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.088	info	0xa4c138e52ab62222 (addr 42053): ZG-227Z - HOBEIAN Temperature and humidity sensor (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.110	info	0xa4c138aff2ffb35b (addr 4828): WSD500A - Tuya Temperature & humidity sensor (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.121	info	0xa4c1383f7cd84f1f (addr 61844): PJ-ZGD01 - Tuya Garage door opener (Router)
        
        zigbee.0
        2025-09-05 10:08:51.155	info	0x00124b002918fa55 (addr 46494): SNZB-01 - SONOFF Wireless button (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.166	info	0xa4c1385a489543a6 (addr 54188): PJ-ZGD01 - Tuya Garage door opener (Router)
        
        zigbee.0
        2025-09-05 10:08:51.219	info	0x5cc7c1fffe62a716 (addr 20148): E2213 - IKEA SOMRIG shortcut button (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.234	info	0xa4c138b1244a2326 (addr 46407): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
        
        zigbee.0
        2025-09-05 10:08:51.241	info	0xa4c1387338f78959 (addr 49783): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
        
        zigbee.0
        2025-09-05 10:08:51.245	info	0xf082c0fffe6ca5a8 (addr 8499): E2001/E2002 - IKEA STYRBAR remote control (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.254	info	0xa4c1383f1cbae5ee (addr 37143): L1(ZW) - Tuya Light dimmer 0-10V (Router)
        
        zigbee.0
        2025-09-05 10:08:51.262	info	0xa4c1382a7889262d (addr 32217): L1(ZW) - Tuya Light dimmer 0-10V (Router)
        
        zigbee.0
        2025-09-05 10:08:51.266	info	0xa4c138c2cceb5a5f (addr 51405): TS0207_water_leak_detector_1 - Tuya Zigbee water flood sensor + 1m probe cable (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.271	info	0x3410f4fffede8b53 (addr 21993): SNZB-02D - SONOFF Temperature and humidity sensor with screen (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.274	info	0x60b647fffecdcec4 (addr 15162): E2001/E2002 - IKEA STYRBAR remote control (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.277	info	0xa4c1382f936bc19b (addr 15549): TS0207_water_leak_detector_1 - Tuya Zigbee water flood sensor + 1m probe cable (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.281	info	0xa4c138cb00b82a17 (addr 25534): TS0207_water_leak_detector_1 - Tuya Zigbee water flood sensor + 1m probe cable (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.288	info	0xa4c138f4a38a40f2 (addr 54321): ZG-204ZL - Tuya Luminance motion sensor (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.291	info	0xe406bffffe3911c7 (addr 47674): TS0044 - Tuya Wireless switch with 4 buttons (EndDevice)
        
        zigbee.0
        2025-09-05 10:08:51.292	info	Currently 19 devices are joined:
        
        zigbee.0
        2025-09-05 10:08:51.296	info	Zigbee started
        
        zigbee.0
        2025-09-05 10:08:51.365	info	DeviceConfigure 0xa4c138e52ab62222 ZG-227Z needed - Device added to Configuration Queue
        
        zigbee.0
        2025-09-05 10:08:51.378	info	DeviceConfigure 0x00124b002918fa55 SNZB-01 needed - Device added to Configuration Queue
        
        zigbee.0
        2025-09-05 10:08:52.134	info	debug devices set to []
        
        zigbee.0
        2025-09-05 10:08:52.987	info	downloading https://www.zigbee2mqtt.io/images/devices/L1-ZW-.png to /tmp/L1(ZW).png
        
        zigbee.0
        2025-09-05 10:08:53.617	warn	ERROR : icon path not found /tmp/L1(ZW).png
        
        zigbee.0
        2025-09-05 10:08:56.367	info	DeviceConfigureQueue configuring 0xa4c138e52ab62222 TS0601
        
        zigbee.0
        2025-09-05 10:08:56.370	info	Configuring 0xa4c138e52ab62222 ZG-227Z
        
        zigbee.0
        2025-09-05 10:09:01.367	info	DeviceConfigureQueue configuring 0x00124b002918fa55 WB01
        
        zigbee.0
        2025-09-05 10:09:01.368	info	Configuring 0x00124b002918fa55 SNZB-01
        
        zigbee.0
        2025-09-05 10:09:06.368	info	Handled all devices Queued for configuration.
        
        zigbee.0
        2025-09-05 10:09:11.583	info	Timeout trying to configure 0x00124b002918fa55 SNZB-01 (starting CoM).
        
        zigbee.0
        2025-09-05 10:09:20.594	warn	DeviceConfigure:0xa4c138e52ab62222 TS0601 Failed to configure. --> ZCL command 0xa4c138e52ab62222/1 genBasic.read(["manufacturerName","zclVersion","appVersion","modelId","powerSource",65534], {"timeout":10000,"disableResponse":false,"disableRecovery":false,"disableDefaultResponse":true,"direction":0,"reservedBits":0,"writeUndiv":false}) failed (Data request failed with error: 'No network route' (205))
        
        Asgothian 1 Reply Last reply Reply Quote 0
        • Asgothian
          Asgothian Developer @throstenk last edited by

          @throstenk copy paste Fehler - der Dateiname den du genommen hast und der name den du eingetragen hast stimmt nicht überein:

          warn	External converter not loaded - neither pj-zgd01-custom.js nor /opt/iobroker/iobroker-data/zigbee_0/pj-zgd01-custom.js exist.
          

          A.

          throstenk 1 Reply Last reply Reply Quote 0
          • throstenk
            throstenk @Asgothian last edited by

            @asgothian jetzt ist ein error im log

            igbee.0
            2025-09-05 10:49:31.314	info	starting. Version 3.0.5 in /opt/iobroker/node_modules/iobroker.zigbee, node: v20.19.1, js-controller: 7.0.7
            
            zigbee.0
            2025-09-05 10:49:31.372	info	Adapter ready - starting subsystems. Adapter is running in info mode.
            
            zigbee.0
            2025-09-05 10:49:31.378	warn	trying to add "tuya = require(../zigbee-herdsman-converters/dist/lib/tuya)" to sandbox
            
            zigbee.0
            2025-09-05 10:49:31.396	error	converter does not export any converter array, please add 'module.exports' statement to /opt/iobroker/iobroker-data/zigbee_0/pj-zgd01_custom.js
            
            zigbee.0
            2025-09-05 10:49:31.398	info	Ignoring converter from module: /opt/iobroker/iobroker-data/zigbee_0/pj-zgd01_custom.js - see warn messages for reason
            
            zigbee.0
            2025-09-05 10:49:31.399	info	init localConfig
            
            zigbee.0
            2025-09-05 10:49:31.499	info	delete old Backup files. keep only last 10
            
            zigbee.0
            2025-09-05 10:49:31.503	info	--- creating device debug ---
            
            zigbee.0
            2025-09-05 10:49:31.504	info	Autostart Zigbee subsystem
            
            zigbee.0
            2025-09-05 10:49:31.506	info	Starting Adapter npm ...
            
            zigbee.0
            2025-09-05 10:49:31.549	info	Installed Version: iobroker.zigbee@3.0.5 (Converters 24.8.0 Herdsman 4.4.1)
            
            zigbee.0
            2025-09-05 10:49:31.552	info	configured transmit power : high+
            
            zigbee.0
            2025-09-05 10:49:31.553	info	Starting Zigbee-Herdsman
            
            zigbee.0
            2025-09-05 10:49:32.186	info	Zigbee-Herdsman started successfully with Coordinator firmware version: ZStack3x0 : 20230507 (2-1.2.7.1)
            
            zigbee.0
            2025-09-05 10:49:32.188	info	Unable to disable LED, unsupported function.
            
            zigbee.0
            2025-09-05 10:49:32.634	info	0xa4c1387b9ff002f5 (addr 64535): ZG-227ZL - Tuya Temperature & humidity LCD sensor (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.669	info	0xa4c138e52ab62222 (addr 42053): ZG-227Z - HOBEIAN Temperature and humidity sensor (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.692	info	0xa4c138aff2ffb35b (addr 4828): WSD500A - Tuya Temperature & humidity sensor (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.704	info	0xa4c1383f7cd84f1f (addr 61844): PJ-ZGD01 - Tuya Garage door opener (Router)
            
            zigbee.0
            2025-09-05 10:49:32.738	info	0x00124b002918fa55 (addr 46494): SNZB-01 - SONOFF Wireless button (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.759	info	0xa4c1385a489543a6 (addr 54188): PJ-ZGD01 - Tuya Garage door opener (Router)
            
            zigbee.0
            2025-09-05 10:49:32.810	info	0x5cc7c1fffe62a716 (addr 20148): E2213 - IKEA SOMRIG shortcut button (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.826	info	0xa4c138b1244a2326 (addr 46407): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
            
            zigbee.0
            2025-09-05 10:49:32.832	info	0xa4c1387338f78959 (addr 49783): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
            
            zigbee.0
            2025-09-05 10:49:32.837	info	0xf082c0fffe6ca5a8 (addr 8499): E2001/E2002 - IKEA STYRBAR remote control (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.847	info	0xa4c1383f1cbae5ee (addr 37143): L1(ZW) - Tuya Light dimmer 0-10V (Router)
            
            zigbee.0
            2025-09-05 10:49:32.857	info	0xa4c1382a7889262d (addr 32217): L1(ZW) - Tuya Light dimmer 0-10V (Router)
            
            zigbee.0
            2025-09-05 10:49:32.862	info	0xa4c138c2cceb5a5f (addr 51405): TS0207_water_leak_detector_1 - Tuya Zigbee water flood sensor + 1m probe cable (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.867	info	0x3410f4fffede8b53 (addr 21993): SNZB-02D - SONOFF Temperature and humidity sensor with screen (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.871	info	0x60b647fffecdcec4 (addr 15162): E2001/E2002 - IKEA STYRBAR remote control (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.874	info	0xa4c1382f936bc19b (addr 15549): TS0207_water_leak_detector_1 - Tuya Zigbee water flood sensor + 1m probe cable (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.876	info	0xa4c138cb00b82a17 (addr 25534): TS0207_water_leak_detector_1 - Tuya Zigbee water flood sensor + 1m probe cable (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.883	info	0xa4c138f4a38a40f2 (addr 54321): ZG-204ZL - Tuya Luminance motion sensor (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.885	info	0xe406bffffe3911c7 (addr 47674): TS0044 - Tuya Wireless switch with 4 buttons (EndDevice)
            
            zigbee.0
            2025-09-05 10:49:32.886	info	Currently 19 devices are joined:
            
            zigbee.0
            2025-09-05 10:49:32.889	info	Zigbee started
            
            zigbee.0
            2025-09-05 10:49:32.952	info	DeviceConfigure 0xa4c138e52ab62222 ZG-227Z needed - Device added to Configuration Queue
            
            zigbee.0
            2025-09-05 10:49:32.965	info	DeviceConfigure 0x00124b002918fa55 SNZB-01 needed - Device added to Configuration Queue
            
            zigbee.0
            2025-09-05 10:49:33.757	info	debug devices set to []
            
            zigbee.0
            2025-09-05 10:49:34.690	info	downloading https://www.zigbee2mqtt.io/images/devices/L1-ZW-.png to /tmp/L1(ZW).png
            
            zigbee.0
            2025-09-05 10:49:35.286	warn	ERROR : icon path not found /tmp/L1(ZW).png
            
            zigbee.0
            2025-09-05 10:49:37.954	info	DeviceConfigureQueue configuring 0xa4c138e52ab62222 TS0601
            
            zigbee.0
            2025-09-05 10:49:37.955	info	Configuring 0xa4c138e52ab62222 ZG-227Z
            
            zigbee.0
            2025-09-05 10:49:42.953	info	DeviceConfigureQueue configuring 0x00124b002918fa55 WB01
            
            zigbee.0
            2025-09-05 10:49:42.955	info	Configuring 0x00124b002918fa55 SNZB-01
            
            zigbee.0
            2025-09-05 10:49:47.953	info	Handled all devices Queued for configuration.
            
            zigbee.0
            2025-09-05 10:49:53.118	info	Timeout trying to configure 0x00124b002918fa55 SNZB-01 (starting CoM).
            
            zigbee.0
            2025-09-05 10:50:02.330	warn	DeviceConfigure:0xa4c138e52ab62222 TS0601 Failed to configure. --> ZCL command 0xa4c138e52ab62222/1 genBasic.read(["manufacturerName","zclVersion","appVersion","modelId","powerSource",65534], {"timeout":10000,"disableResponse":false,"disableRecovery":false,"disableDefaultResponse":true,"direction":0,"reservedBits":0,"writeUndiv":false}) failed (Data request failed with error: 'No network route' (205))
            
            Asgothian 1 Reply Last reply Reply Quote 0
            • Asgothian
              Asgothian Developer @throstenk last edited by

              @throstenk ok.. ein Typo beim Kopieren:

              aus

              module.export definition;
              

              muss

              module.exports =  definition;
              

              werden (in der Datei)

              A.

              throstenk 1 Reply Last reply Reply Quote 0
              • throstenk
                throstenk @Asgothian last edited by

                @asgothian hier das neue Log..

                zigbee.0
                2025-09-05 11:12:24.439	info	starting. Version 3.0.5 in /opt/iobroker/node_modules/iobroker.zigbee, node: v20.19.1, js-controller: 7.0.7
                
                zigbee.0
                2025-09-05 11:12:24.524	info	Adapter ready - starting subsystems. Adapter is running in info mode.
                
                zigbee.0
                2025-09-05 11:12:24.531	warn	trying to add "tuya = require(../zigbee-herdsman-converters/dist/lib/tuya)" to sandbox
                
                zigbee.0
                2025-09-05 11:12:24.555	warn	Trying to run sandbox for /opt/iobroker/iobroker-data/zigbee_0/pj-zgd01_custom.js
                
                zigbee.0
                2025-09-05 11:12:24.563	info	Model TS0601_garage_door_opener defined in external converter /opt/iobroker/iobroker-data/zigbee_0/pj-zgd01_custom.js
                
                zigbee.0
                2025-09-05 11:12:24.565	info	added external converter using addExternalDefinition (1 ms)
                
                zigbee.0
                2025-09-05 11:12:24.566	info	init localConfig
                
                zigbee.0
                2025-09-05 11:12:24.659	info	delete old Backup files. keep only last 10
                
                zigbee.0
                2025-09-05 11:12:24.664	info	--- creating device debug ---
                
                zigbee.0
                2025-09-05 11:12:24.665	info	Autostart Zigbee subsystem
                
                zigbee.0
                2025-09-05 11:12:24.667	info	Starting Adapter npm ...
                
                zigbee.0
                2025-09-05 11:12:24.703	info	Installed Version: iobroker.zigbee@3.0.5 (Converters 24.8.0 Herdsman 4.4.1)
                
                zigbee.0
                2025-09-05 11:12:24.705	info	configured transmit power : high+
                
                zigbee.0
                2025-09-05 11:12:24.706	info	Starting Zigbee-Herdsman
                
                zigbee.0
                2025-09-05 11:12:25.464	info	Zigbee-Herdsman started successfully with Coordinator firmware version: ZStack3x0 : 20230507 (2-1.2.7.1)
                
                zigbee.0
                2025-09-05 11:12:25.466	info	Unable to disable LED, unsupported function.
                
                zigbee.0
                2025-09-05 11:12:25.963	info	0xa4c1387b9ff002f5 (addr 64535): ZG-227ZL - Tuya Temperature & humidity LCD sensor (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:25.979	info	0xa4c138e52ab62222 (addr 42053): ZG-227Z - HOBEIAN Temperature and humidity sensor (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.012	info	0xa4c138aff2ffb35b (addr 4828): WSD500A - Tuya Temperature & humidity sensor (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.024	info	0xa4c1383f7cd84f1f (addr 61844): TS0601_garage_door_opener - Tuya Garage door opener (Router)
                
                zigbee.0
                2025-09-05 11:12:26.058	info	0x00124b002918fa55 (addr 46494): SNZB-01 - SONOFF Wireless button (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.070	info	0xa4c1385a489543a6 (addr 54188): TS0601_garage_door_opener - Tuya Garage door opener (Router)
                
                zigbee.0
                2025-09-05 11:12:26.122	info	0x5cc7c1fffe62a716 (addr 20148): E2213 - IKEA SOMRIG shortcut button (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.142	info	0xa4c138b1244a2326 (addr 46407): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
                
                zigbee.0
                2025-09-05 11:12:26.162	info	0xa4c1387338f78959 (addr 49783): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
                
                zigbee.0
                2025-09-05 11:12:26.166	info	0xf082c0fffe6ca5a8 (addr 8499): E2001/E2002 - IKEA STYRBAR remote control (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.175	info	0xa4c1383f1cbae5ee (addr 37143): L1(ZW) - Tuya Light dimmer 0-10V (Router)
                
                zigbee.0
                2025-09-05 11:12:26.182	info	0xa4c1382a7889262d (addr 32217): L1(ZW) - Tuya Light dimmer 0-10V (Router)
                
                zigbee.0
                2025-09-05 11:12:26.186	info	0xa4c138c2cceb5a5f (addr 51405): TS0207_water_leak_detector_1 - Tuya Zigbee water flood sensor + 1m probe cable (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.190	info	0x3410f4fffede8b53 (addr 21993): SNZB-02D - SONOFF Temperature and humidity sensor with screen (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.193	info	0x60b647fffecdcec4 (addr 15162): E2001/E2002 - IKEA STYRBAR remote control (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.196	info	0xa4c1382f936bc19b (addr 15549): TS0207_water_leak_detector_1 - Tuya Zigbee water flood sensor + 1m probe cable (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.199	info	0xa4c138cb00b82a17 (addr 25534): TS0207_water_leak_detector_1 - Tuya Zigbee water flood sensor + 1m probe cable (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.205	info	0xa4c138f4a38a40f2 (addr 54321): ZG-204ZL - Tuya Luminance motion sensor (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.208	info	0xe406bffffe3911c7 (addr 47674): TS0044 - Tuya Wireless switch with 4 buttons (EndDevice)
                
                zigbee.0
                2025-09-05 11:12:26.208	info	Currently 19 devices are joined:
                
                zigbee.0
                2025-09-05 11:12:26.211	info	Zigbee started
                
                zigbee.0
                2025-09-05 11:12:26.283	info	DeviceConfigure 0xa4c138e52ab62222 ZG-227Z needed - Device added to Configuration Queue
                
                zigbee.0
                2025-09-05 11:12:26.295	info	DeviceConfigure 0x00124b002918fa55 SNZB-01 needed - Device added to Configuration Queue
                
                zigbee.0
                2025-09-05 11:12:27.000	info	debug devices set to []
                
                zigbee.0
                2025-09-05 11:12:27.964	info	downloading https://www.zigbee2mqtt.io/images/devices/L1-ZW-.png to /tmp/L1(ZW).png
                
                zigbee.0
                2025-09-05 11:12:28.523	warn	ERROR : icon path not found /tmp/L1(ZW).png
                
                zigbee.0
                2025-09-05 11:12:31.285	info	DeviceConfigureQueue configuring 0xa4c138e52ab62222 TS0601
                
                zigbee.0
                2025-09-05 11:12:31.287	info	Configuring 0xa4c138e52ab62222 ZG-227Z
                
                zigbee.0
                2025-09-05 11:12:36.286	info	DeviceConfigureQueue configuring 0x00124b002918fa55 WB01
                
                zigbee.0
                2025-09-05 11:12:36.287	info	Configuring 0x00124b002918fa55 SNZB-01
                
                zigbee.0
                2025-09-05 11:12:41.286	info	Handled all devices Queued for configuration.
                
                zigbee.0
                2025-09-05 11:12:46.469	info	Timeout trying to configure 0x00124b002918fa55 SNZB-01 (starting CoM).
                
                zigbee.0
                2025-09-05 11:12:55.929	warn	DeviceConfigure:0xa4c138e52ab62222 TS0601 Failed to configure. --> ZCL command 0xa4c138e52ab62222/1 genBasic.read(["manufacturerName","zclVersion","appVersion","modelId","powerSource",65534], {"timeout":10000,"disableResponse":false,"disableRecovery":false,"disableDefaultResponse":true,"direction":0,"reservedBits":0,"writeUndiv":false}) failed (Data request failed with error: 'No network route' (205))
                
                Asgothian 1 Reply Last reply Reply Quote 0
                • Asgothian
                  Asgothian Developer @throstenk last edited by

                  @throstenk damit wird der neu Konverter geladen. Jetzt bitte nochmal mit Device debug aktiv nen device_query

                  throstenk 1 Reply Last reply Reply Quote 0
                  • throstenk
                    throstenk @Asgothian last edited by

                    @asgothian hier die letzten 5min

                    
                    zigbee.0
                    2025-09-05 11:19:05.448	info	debug devices set to ["a4c1385a489543a6"]
                    
                    zigbee.0
                    2025-09-05 11:19:21.616	warn	ELEVATED:I01 (5c0e) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":26880,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":91,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":236,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:19:21.623	warn	ELEVATED:I01 (5c0e) message received '{"linkquality":91}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:19:21.623	warn	ELEVATED:I02 (5c0e) value generated '91' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:19:22.540	warn	ELEVATED:O01 (5fac) User state change of state zigbee.0.a4c1385a489543a6.device_query with value true (ack: false) from system.adapter.admin.0
                    
                    zigbee.0
                    2025-09-05 11:19:22.543	warn	ELEVATED:O02 (5fac) Change state 'device_query' at device 0xa4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:19:22.544	warn	ELEVATED:O03 (5fac) Publishing to 0xa4c1385a489543a6 of model TS0601_garage_door_opener with device_query
                    
                    zigbee.0
                    2025-09-05 11:19:22.547	warn	ELEVATED:Occ (5fac) changed state: {"stateDesc":{"id":"device_query","prop":"device_query","name":"Trigger device query","role":"button","write":true,"read":false,"type":"boolean","isOption":true},"value":true,"index":0,"timeout":0,"source":"system.adapter.admin.0"}
                    
                    zigbee.0
                    2025-09-05 11:19:22.547	warn	ELEVATED:Oqs (5fac) Device query for '0xa4c1385a489543a6/1' triggered
                    
                    zigbee.0
                    2025-09-05 11:19:22.548	warn	ELEVATED:Oqe (5fac) ELEVATED O07: Device query for '0xa4c1385a489543a6/1' complete
                    
                    zigbee.0
                    2025-09-05 11:19:51.637	warn	ELEVATED:I01 (d155) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":27392,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":91,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":237,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:19:51.645	warn	ELEVATED:I01 (d155) message received '{"linkquality":91}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:19:51.645	warn	ELEVATED:I02 (d155) value generated '91' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:20:21.663	warn	ELEVATED:I01 (469e) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":27904,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":87,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":238,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:20:21.668	warn	ELEVATED:I01 (469e) message received '{"linkquality":87}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:20:21.669	warn	ELEVATED:I02 (469e) value generated '87' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:20:51.688	warn	ELEVATED:I01 (bbe8) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":28416,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":91,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":239,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:20:51.698	warn	ELEVATED:I01 (bbe8) message received '{"linkquality":91}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:20:51.698	warn	ELEVATED:I02 (bbe8) value generated '91' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:21:03.501	warn	ELEVATED:I01 (ea0d) Zigbee Event of Type attributeReport from device 0xa4c1385a489543a6, incoming event: {"type":"attributeReport","data":{"65506":54,"65508":0,"appVersion":70},"linkquality":91,"groupID":0,"cluster":"genBasic","meta":{"zclTransactionSequenceNumber":240,"frameControl":{"frameType":0,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:21:03.509	warn	ELEVATED:NOCONV (ea0d) No converter available for 'TS0601_garage_door_opener' 'a4c1385a489543a6' with cluster 'genBasic' and type 'attributeReport'
                    
                    zigbee.0
                    2025-09-05 11:21:03.510	warn	ELEVATED:I01 (ea0d) message received '{"linkquality":91}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:21:03.511	warn	ELEVATED:I02 (ea0d) value generated '91' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:21:21.710	warn	ELEVATED:I01 (312e) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":28928,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":87,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":241,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:21:21.716	warn	ELEVATED:I01 (312e) message received '{"linkquality":87}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:21:21.716	warn	ELEVATED:I02 (312e) value generated '87' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:21:51.733	warn	ELEVATED:I01 (a674) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":29440,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":87,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":242,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:21:51.740	warn	ELEVATED:I01 (a674) message received '{"linkquality":87}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:21:51.741	warn	ELEVATED:I02 (a674) value generated '87' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:22:21.758	warn	ELEVATED:I01 (1bbd) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":29952,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":87,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":243,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:22:21.763	warn	ELEVATED:I01 (1bbd) message received '{"linkquality":87}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:22:21.764	warn	ELEVATED:I02 (1bbd) value generated '87' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:22:51.782	warn	ELEVATED:I01 (9106) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":30464,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":91,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":244,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:22:51.790	warn	ELEVATED:I01 (9106) message received '{"linkquality":91}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:22:51.791	warn	ELEVATED:I02 (9106) value generated '91' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:23:21.798	warn	ELEVATED:I01 (0646) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":30976,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":83,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":245,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:23:21.806	warn	ELEVATED:I01 (0646) message received '{"linkquality":83}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:23:21.807	warn	ELEVATED:I02 (0646) value generated '83' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:23:51.830	warn	ELEVATED:I01 (7b96) Zigbee Event of Type commandDataReport from device 0xa4c1385a489543a6, incoming event: {"type":"commandDataReport","data":{"seq":31488,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":87,"groupID":0,"cluster":"manuSpecificTuya","meta":{"zclTransactionSequenceNumber":246,"frameControl":{"frameType":1,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:23:51.837	warn	ELEVATED:I01 (7b96) message received '{"linkquality":87}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:23:51.838	warn	ELEVATED:I02 (7b96) value generated '87' from device a4c1385a489543a6 for 'Link quality'
                    
                    zigbee.0
                    2025-09-05 11:24:03.228	warn	ELEVATED:I01 (a81b) Zigbee Event of Type attributeReport from device 0xa4c1385a489543a6, incoming event: {"type":"attributeReport","data":{"65506":54,"65508":0,"appVersion":70},"linkquality":87,"groupID":0,"cluster":"genBasic","meta":{"zclTransactionSequenceNumber":247,"frameControl":{"frameType":0,"manufacturerSpecific":false,"direction":1,"disableDefaultResponse":false,"reservedBits":0}},"endpoint_id":1}
                    
                    zigbee.0
                    2025-09-05 11:24:03.242	warn	ELEVATED:NOCONV (a81b) No converter available for 'TS0601_garage_door_opener' 'a4c1385a489543a6' with cluster 'genBasic' and type 'attributeReport'
                    
                    zigbee.0
                    2025-09-05 11:24:03.243	warn	ELEVATED:I01 (a81b) message received '{"linkquality":87}' from device a4c1385a489543a6 type 'TS0601_garage_door_opener'
                    
                    zigbee.0
                    2025-09-05 11:24:03.243	warn	ELEVATED:I02 (a81b) value generated '87' from device a4c1385a489543a6 for 'Link quality'
                    
                    Asgothian 1 Reply Last reply Reply Quote 0
                    • Asgothian
                      Asgothian Developer @throstenk last edited by Asgothian

                      @throstenk An der Stelle bin ich raus. Das Gerät meldet die Daten

                      "data":{"seq":31488,"dpValues":[{"dp":3,"datatype":1,"data":{"type":"Buffer","data":[0]}}]},"linkquality":87

                      es melded für den Sensor (DP 3) den Wert false (0), der Konverter erzeugt daraus aber keinen Payload für den Adapter. (bzw. nur den Payload für die link quality)

                      Ohne ein physikalisches Gerät kann ich da nicht weiter schauen.

                      A.

                      throstenk 1 Reply Last reply Reply Quote 0
                      • throstenk
                        throstenk @Asgothian last edited by

                        @asgothian ok das ist schlecht - aber trotzdem Danke für deine Zeit und mühen....
                        denke ich sollte mir einen anderen Toröffner organisieren - hättest du eine Empfehlung für mich wichtig wäre der Status vom Tor offen oder zu?

                        Asgothian 1 Reply Last reply Reply Quote 0
                        • Asgothian
                          Asgothian Developer @throstenk last edited by

                          @throstenk sagte in Zigbee Garagentoröffner PJ-ZGD01 fehlerhaft:

                          denke ich sollte mir einen anderen Toröffner organisieren - hättest du eine Empfehlung für mich wichtig wäre der Status vom Tor offen oder zu?

                          wenn die Funktion ansonsten gut ist, würde ich das Thema 'tor offen / tor zu' mit 2 einfachen Tür/Fenstersensoren überwachen. 2, damit du sowohl 'ganz offen' als auch 'ganz zu' hast.

                          Ich hab den Anwendungsfall nicht, deswegen kann ich da kein Gerät empfehlen. Mit der Verbindung sollte es aber gehen - die Autoren arbeiten ja als Router. Und auch die Alarm / Zeitschalt-Funktion sollte durchaus weiter klappen - die macht das Gerät ja selber. Solltest du ggf. testen.

                          A.

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

                          Support us

                          ioBroker
                          Community Adapters
                          Donate

                          888
                          Online

                          32.1k
                          Users

                          80.6k
                          Topics

                          1.3m
                          Posts

                          3
                          34
                          412
                          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