Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Error/Bug
  4. Zigbee Aktor nicht alle Kanäle steuerbar

NEWS

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    791

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    18
    1
    6.2k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    1.5k

Zigbee Aktor nicht alle Kanäle steuerbar

Scheduled Pinned Locked Moved Error/Bug
25 Posts 3 Posters 2.6k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • AsgothianA Asgothian

    @mcbeath Logs bitte nicht als Screenshot - das können meine alten Augen nicht lesen. Text (in code tags (</>) macht alles viel einfacher.

    Bitte die ' import' am Anfang nach dem folgenden Muster anpassen:

    aus

    import <a> from <b>;
    

    wird

    const <a> = require(<b>);
    

    Dabei beachten das die Code-Schnipsel * as wegfallen, sprich aus

    import * as exposes from '../lib/exposes';
    

    wird

    const exposes = require('../lib/exposes');
    

    A.

    M Offline
    M Offline
    McBeath
    wrote on last edited by McBeath
    #9

    @asgothian
    Ich denke ich habe deine Anleitung korrekt umgesetzt.

    const fz = require('../converters/fromZigbee');
    const tz = require('../converters/toZigbee');
    const exposes = require('../lib/exposes');
    const {deviceEndpoints, onOff} = require('../lib/modernExtend');
    const reporting = require('../lib/reporting');
    const tuya = require('../lib/tuya');
    const {DefinitionWithExtend} = require('../lib/types');
    

    Ergebnis folgt... 👍

    Edit:
    Neue Fehlermeldung:

    zigbee.0
    	2025-02-02 13:15:01.411	info	0xa4c138ec5f5abc82 (addr 29562): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
    zigbee.0
    	2025-02-02 13:15:01.410	info	0xa4c1383751fb0da3 (addr 5952): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
    zigbee.0
    	2025-02-02 13:15:01.408	info	0xa4c138309c89ab50 (addr 28969): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
    zigbee.0
    	2025-02-02 13:15:01.407	info	0xa4c138c700eed6ce (addr 51531): TS0201 - Tuya Temperature & humidity sensor with display (EndDevice)
    zigbee.0
    	2025-02-02 13:15:01.404	info	0x282c02bfffeee4ec (addr 26254): 3RVS01031Z - Third Reality Zigbee vibration sensor (EndDevice)
    zigbee.0
    	2025-02-02 13:15:01.379	info	Currently 6 devices are joined:
    zigbee.0
    	2025-02-02 13:15:01.367	info	--> transmitPower : normal
    zigbee.0
    	2025-02-02 13:15:01.366	info	Unable to disable LED, unsupported function.
    zigbee.0
    	2025-02-02 13:15:01.366	info	Coordinator firmware version: {"type":"zStack3x0","meta":{"transportrev":2,"product":1,"majorrel":2,"minorrel":7,"maintrel":1,"revision":20240710}}
    zigbee.0
    	2025-02-02 13:14:59.863	info	Installed Version: iobroker.zigbee@1.10.14
    zigbee.0
    	2025-02-02 13:14:59.638	info	Starting Zigbee npm ...
    zigbee.0
    	2025-02-02 13:14:59.636	info	delete old Backup files. keep only last 10
    zigbee.0
    	2025-02-02 13:14:59.576	error	Unable to apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js - the code does not run: SyntaxError: Unexpected token 'export'
    zigbee.0
    	2025-02-02 13:14:59.572	info	Apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js
    zigbee.0
    	2025-02-02 13:14:59.539	info	starting. Version 1.10.14 in /opt/iobroker/node_modules/iobroker.zigbee, node: v18.18.2, js-controller: 7.0.6
    zigbee.0
    	2025-02-02 13:14:52.803	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
    zigbee.0
    	2025-02-02 13:14:52.801	info	terminating
    zigbee.0
    	2025-02-02 13:14:52.302	info	Zigbee: disabling joining new devices.
    zigbee.0
    	2025-02-02 13:14:52.300	info	cleaned everything up...
    zigbee.0
    	2025-02-02 13:14:52.299	info	Got terminate signal TERMINATE_YOURSELF
    
    AsgothianA 1 Reply Last reply
    0
    • M McBeath

      @asgothian
      Ich denke ich habe deine Anleitung korrekt umgesetzt.

      const fz = require('../converters/fromZigbee');
      const tz = require('../converters/toZigbee');
      const exposes = require('../lib/exposes');
      const {deviceEndpoints, onOff} = require('../lib/modernExtend');
      const reporting = require('../lib/reporting');
      const tuya = require('../lib/tuya');
      const {DefinitionWithExtend} = require('../lib/types');
      

      Ergebnis folgt... 👍

      Edit:
      Neue Fehlermeldung:

      zigbee.0
      	2025-02-02 13:15:01.411	info	0xa4c138ec5f5abc82 (addr 29562): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
      zigbee.0
      	2025-02-02 13:15:01.410	info	0xa4c1383751fb0da3 (addr 5952): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
      zigbee.0
      	2025-02-02 13:15:01.408	info	0xa4c138309c89ab50 (addr 28969): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
      zigbee.0
      	2025-02-02 13:15:01.407	info	0xa4c138c700eed6ce (addr 51531): TS0201 - Tuya Temperature & humidity sensor with display (EndDevice)
      zigbee.0
      	2025-02-02 13:15:01.404	info	0x282c02bfffeee4ec (addr 26254): 3RVS01031Z - Third Reality Zigbee vibration sensor (EndDevice)
      zigbee.0
      	2025-02-02 13:15:01.379	info	Currently 6 devices are joined:
      zigbee.0
      	2025-02-02 13:15:01.367	info	--> transmitPower : normal
      zigbee.0
      	2025-02-02 13:15:01.366	info	Unable to disable LED, unsupported function.
      zigbee.0
      	2025-02-02 13:15:01.366	info	Coordinator firmware version: {"type":"zStack3x0","meta":{"transportrev":2,"product":1,"majorrel":2,"minorrel":7,"maintrel":1,"revision":20240710}}
      zigbee.0
      	2025-02-02 13:14:59.863	info	Installed Version: iobroker.zigbee@1.10.14
      zigbee.0
      	2025-02-02 13:14:59.638	info	Starting Zigbee npm ...
      zigbee.0
      	2025-02-02 13:14:59.636	info	delete old Backup files. keep only last 10
      zigbee.0
      	2025-02-02 13:14:59.576	error	Unable to apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js - the code does not run: SyntaxError: Unexpected token 'export'
      zigbee.0
      	2025-02-02 13:14:59.572	info	Apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js
      zigbee.0
      	2025-02-02 13:14:59.539	info	starting. Version 1.10.14 in /opt/iobroker/node_modules/iobroker.zigbee, node: v18.18.2, js-controller: 7.0.6
      zigbee.0
      	2025-02-02 13:14:52.803	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
      zigbee.0
      	2025-02-02 13:14:52.801	info	terminating
      zigbee.0
      	2025-02-02 13:14:52.302	info	Zigbee: disabling joining new devices.
      zigbee.0
      	2025-02-02 13:14:52.300	info	cleaned everything up...
      zigbee.0
      	2025-02-02 13:14:52.299	info	Got terminate signal TERMINATE_YOURSELF
      
      AsgothianA Offline
      AsgothianA Offline
      Asgothian
      Developer
      wrote on last edited by
      #10

      @mcbeath bitte aus

      export default definitions;
      

      dieses machen:

      //export default definitions;
      

      A.

      ioBroker auf RPi4 - Hardware soweit wie möglich via Zigbee.
      "Shit don't work" ist keine Fehlermeldung, sondern ein Fluch.

      M 1 Reply Last reply
      0
      • AsgothianA Asgothian

        @mcbeath bitte aus

        export default definitions;
        

        dieses machen:

        //export default definitions;
        

        A.

        M Offline
        M Offline
        McBeath
        wrote on last edited by
        #11

        @asgothian
        Jetzt kann er scheinbar was nicht finden..

        zigbee.0
        	2025-02-02 17:15:37.213	info	Currently 6 devices are joined:
        zigbee.0
        	2025-02-02 17:15:37.198	info	--> transmitPower : normal
        zigbee.0
        	2025-02-02 17:15:37.198	info	Unable to disable LED, unsupported function.
        zigbee.0
        	2025-02-02 17:15:37.197	info	Coordinator firmware version: {"type":"zStack3x0","meta":{"transportrev":2,"product":1,"majorrel":2,"minorrel":7,"maintrel":1,"revision":20240710}}
        zigbee.0
        	2025-02-02 17:15:35.723	info	Installed Version: iobroker.zigbee@1.10.14
        zigbee.0
        	2025-02-02 17:15:35.498	info	Starting Zigbee npm ...
        zigbee.0
        	2025-02-02 17:15:35.497	info	delete old Backup files. keep only last 10
        zigbee.0
        	2025-02-02 17:15:35.437	error	Unable to apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js - the code does not run: Error: Cannot find module '../lib/modernExtend'Require stack:- /opt/iobroker/node_modules/iobroker.zigbee/main.js
        zigbee.0
        	2025-02-02 17:15:35.434	info	Apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js
        zigbee.0
        	2025-02-02 17:15:35.402	info	starting. Version 1.10.14 in /opt/iobroker/node_modules/iobroker.zigbee, node: v18.18.2, js-controller: 7.0.6
        zigbee.0
        	2025-02-02 17:15:28.639	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
        zigbee.0
        	2025-02-02 17:15:28.638	info	terminating
        zigbee.0
        	2025-02-02 17:15:28.139	info	Zigbee: disabling joining new devices.
        zigbee.0
        	2025-02-02 17:15:28.138	info	cleaned everything up...
        zigbee.0
        	2025-02-02 17:15:28.135	info	Got terminate signal TERMINATE_YOURSELF
        
        AsgothianA 1 Reply Last reply
        0
        • M McBeath

          @asgothian
          Jetzt kann er scheinbar was nicht finden..

          zigbee.0
          	2025-02-02 17:15:37.213	info	Currently 6 devices are joined:
          zigbee.0
          	2025-02-02 17:15:37.198	info	--> transmitPower : normal
          zigbee.0
          	2025-02-02 17:15:37.198	info	Unable to disable LED, unsupported function.
          zigbee.0
          	2025-02-02 17:15:37.197	info	Coordinator firmware version: {"type":"zStack3x0","meta":{"transportrev":2,"product":1,"majorrel":2,"minorrel":7,"maintrel":1,"revision":20240710}}
          zigbee.0
          	2025-02-02 17:15:35.723	info	Installed Version: iobroker.zigbee@1.10.14
          zigbee.0
          	2025-02-02 17:15:35.498	info	Starting Zigbee npm ...
          zigbee.0
          	2025-02-02 17:15:35.497	info	delete old Backup files. keep only last 10
          zigbee.0
          	2025-02-02 17:15:35.437	error	Unable to apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js - the code does not run: Error: Cannot find module '../lib/modernExtend'Require stack:- /opt/iobroker/node_modules/iobroker.zigbee/main.js
          zigbee.0
          	2025-02-02 17:15:35.434	info	Apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js
          zigbee.0
          	2025-02-02 17:15:35.402	info	starting. Version 1.10.14 in /opt/iobroker/node_modules/iobroker.zigbee, node: v18.18.2, js-controller: 7.0.6
          zigbee.0
          	2025-02-02 17:15:28.639	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
          zigbee.0
          	2025-02-02 17:15:28.638	info	terminating
          zigbee.0
          	2025-02-02 17:15:28.139	info	Zigbee: disabling joining new devices.
          zigbee.0
          	2025-02-02 17:15:28.138	info	cleaned everything up...
          zigbee.0
          	2025-02-02 17:15:28.135	info	Got terminate signal TERMINATE_YOURSELF
          
          AsgothianA Offline
          AsgothianA Offline
          Asgothian
          Developer
          wrote on last edited by
          #12

          @mcbeath versuch mal das require davon auszukommentieren. Ich glaube das braucht der nicht. (// an den Anfang der Zeile)

          A.

          ioBroker auf RPi4 - Hardware soweit wie möglich via Zigbee.
          "Shit don't work" ist keine Fehlermeldung, sondern ein Fluch.

          M 1 Reply Last reply
          0
          • AsgothianA Asgothian

            @mcbeath versuch mal das require davon auszukommentieren. Ich glaube das braucht der nicht. (// an den Anfang der Zeile)

            A.

            M Offline
            M Offline
            McBeath
            wrote on last edited by
            #13

            @asgothian

            const fz = require('../converters/fromZigbee');
            const tz = require('../converters/toZigbee');
            const exposes = require('../lib/exposes');
            //const {deviceEndpoints, onOff} = require('../lib/modernExtend');
            const reporting = require('../lib/reporting');
            const tuya = require('../lib/tuya');
            const {DefinitionWithExtend} = require('../lib/types');
            

            Ergebnis:

            zigbee.0
            	2025-02-02 18:45:07.995	info	Coordinator firmware version: {"type":"zStack3x0","meta":{"transportrev":2,"product":1,"majorrel":2,"minorrel":7,"maintrel":1,"revision":20240710}}
            zigbee.0
            	2025-02-02 18:45:06.521	info	Installed Version: iobroker.zigbee@1.10.14
            zigbee.0
            	2025-02-02 18:45:06.239	info	Starting Zigbee npm ...
            zigbee.0
            	2025-02-02 18:45:06.237	info	delete old Backup files. keep only last 10
            zigbee.0
            	2025-02-02 18:45:06.174	error	Unable to apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js - the code does not run: Error: Cannot find module '../lib/types'Require stack:- /opt/iobroker/node_modules/iobroker.zigbee/main.js
            zigbee.0
            	2025-02-02 18:45:06.170	info	Apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js
            
            AsgothianA 1 Reply Last reply
            0
            • M McBeath

              @asgothian

              const fz = require('../converters/fromZigbee');
              const tz = require('../converters/toZigbee');
              const exposes = require('../lib/exposes');
              //const {deviceEndpoints, onOff} = require('../lib/modernExtend');
              const reporting = require('../lib/reporting');
              const tuya = require('../lib/tuya');
              const {DefinitionWithExtend} = require('../lib/types');
              

              Ergebnis:

              zigbee.0
              	2025-02-02 18:45:07.995	info	Coordinator firmware version: {"type":"zStack3x0","meta":{"transportrev":2,"product":1,"majorrel":2,"minorrel":7,"maintrel":1,"revision":20240710}}
              zigbee.0
              	2025-02-02 18:45:06.521	info	Installed Version: iobroker.zigbee@1.10.14
              zigbee.0
              	2025-02-02 18:45:06.239	info	Starting Zigbee npm ...
              zigbee.0
              	2025-02-02 18:45:06.237	info	delete old Backup files. keep only last 10
              zigbee.0
              	2025-02-02 18:45:06.174	error	Unable to apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js - the code does not run: Error: Cannot find module '../lib/types'Require stack:- /opt/iobroker/node_modules/iobroker.zigbee/main.js
              zigbee.0
              	2025-02-02 18:45:06.170	info	Apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js
              
              AsgothianA Offline
              AsgothianA Offline
              Asgothian
              Developer
              wrote on last edited by
              #14

              @mcbeath auch auskommentieren. (das hättest du auch selber schon probieren können.. die Fehlermeldung ist die gleiche - da hat er was nicht gefunden)

              ioBroker auf RPi4 - Hardware soweit wie möglich via Zigbee.
              "Shit don't work" ist keine Fehlermeldung, sondern ein Fluch.

              M 1 Reply Last reply
              0
              • AsgothianA Asgothian

                @mcbeath auch auskommentieren. (das hättest du auch selber schon probieren können.. die Fehlermeldung ist die gleiche - da hat er was nicht gefunden)

                M Offline
                M Offline
                McBeath
                wrote on last edited by McBeath
                #15

                @asgothian
                In anbetracht, das ich 0,0 Ahnung habe, was ich hier mache, dachte ich es wäre besser nur nach Anleitung zu arbeiten. 😧

                ebensalls entfernt:

                const fz = require('../converters/fromZigbee');
                const tz = require('../converters/toZigbee');
                const exposes = require('../lib/exposes');
                //const {deviceEndpoints, onOff} = require('../lib/modernExtend');
                const reporting = require('../lib/reporting');
                const tuya = require('../lib/tuya');
                //const {DefinitionWithExtend} = require('../lib/types');
                

                Jetzt läuft es! 😊
                das Objekt "state" habe ich manuell gelöscht, war vorher I1 und gab fehler raus.
                I2 und I3 funktionieren jetzt auch. Muss nur noch die Energiemessung checken, dann ist alles TOP! 👍 👏

                zigbee.0
                	2025-02-02 19:16:19.520	error	No state available for 'WP30-EU' with key 'state'
                zigbee.0
                	2025-02-02 19:15:42.201	info	debug devices set to []
                zigbee.0
                	2025-02-02 19:15:42.109	warn	download icon from https://www.zigbee2mqtt.io/images/devices/WP30-EU.png saved into /opt/iobroker/node_modules/iobroker.zigbee/admin/img/WP30-EU.png
                zigbee.0
                	2025-02-02 19:15:42.096	info	Zigbee started
                zigbee.0
                	2025-02-02 19:15:42.096	info	0xa4c138afd9b5dc56 (addr 44048): WP30-EU - LELLKI Power cord 4 sockets EU (with power monitoring) (Router)
                zigbee.0
                	2025-02-02 19:15:42.094	info	0xa4c138ec5f5abc82 (addr 29562): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
                zigbee.0
                	2025-02-02 19:15:42.093	info	0xa4c1383751fb0da3 (addr 5952): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
                zigbee.0
                	2025-02-02 19:15:42.091	info	0xa4c138309c89ab50 (addr 28969): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
                zigbee.0
                	2025-02-02 19:15:42.090	info	0xa4c138c700eed6ce (addr 51531): TS0201 - Tuya Temperature & humidity sensor with display (EndDevice)
                zigbee.0
                	2025-02-02 19:15:42.088	info	0x282c02bfffeee4ec (addr 26254): 3RVS01031Z - Third Reality Zigbee vibration sensor (EndDevice)
                zigbee.0
                	2025-02-02 19:15:42.063	info	Currently 6 devices are joined:
                zigbee.0
                	2025-02-02 19:15:42.051	info	--> transmitPower : normal
                zigbee.0
                	2025-02-02 19:15:42.051	info	Unable to disable LED, unsupported function.
                zigbee.0
                	2025-02-02 19:15:42.050	info	Coordinator firmware version: {"type":"zStack3x0","meta":{"transportrev":2,"product":1,"majorrel":2,"minorrel":7,"maintrel":1,"revision":20240710}}
                zigbee.0
                	2025-02-02 19:15:40.553	info	Installed Version: iobroker.zigbee@1.10.14
                zigbee.0
                	2025-02-02 19:15:40.294	info	Starting Zigbee npm ...
                zigbee.0
                	2025-02-02 19:15:40.293	info	delete old Backup files. keep only last 10
                zigbee.0
                	2025-02-02 19:15:40.235	info	Apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js
                

                Energiemessung funktioniert auch noch von hier aus alles tip top.
                👏 👏

                AsgothianA 1 Reply Last reply
                0
                • M McBeath

                  @asgothian
                  In anbetracht, das ich 0,0 Ahnung habe, was ich hier mache, dachte ich es wäre besser nur nach Anleitung zu arbeiten. 😧

                  ebensalls entfernt:

                  const fz = require('../converters/fromZigbee');
                  const tz = require('../converters/toZigbee');
                  const exposes = require('../lib/exposes');
                  //const {deviceEndpoints, onOff} = require('../lib/modernExtend');
                  const reporting = require('../lib/reporting');
                  const tuya = require('../lib/tuya');
                  //const {DefinitionWithExtend} = require('../lib/types');
                  

                  Jetzt läuft es! 😊
                  das Objekt "state" habe ich manuell gelöscht, war vorher I1 und gab fehler raus.
                  I2 und I3 funktionieren jetzt auch. Muss nur noch die Energiemessung checken, dann ist alles TOP! 👍 👏

                  zigbee.0
                  	2025-02-02 19:16:19.520	error	No state available for 'WP30-EU' with key 'state'
                  zigbee.0
                  	2025-02-02 19:15:42.201	info	debug devices set to []
                  zigbee.0
                  	2025-02-02 19:15:42.109	warn	download icon from https://www.zigbee2mqtt.io/images/devices/WP30-EU.png saved into /opt/iobroker/node_modules/iobroker.zigbee/admin/img/WP30-EU.png
                  zigbee.0
                  	2025-02-02 19:15:42.096	info	Zigbee started
                  zigbee.0
                  	2025-02-02 19:15:42.096	info	0xa4c138afd9b5dc56 (addr 44048): WP30-EU - LELLKI Power cord 4 sockets EU (with power monitoring) (Router)
                  zigbee.0
                  	2025-02-02 19:15:42.094	info	0xa4c138ec5f5abc82 (addr 29562): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
                  zigbee.0
                  	2025-02-02 19:15:42.093	info	0xa4c1383751fb0da3 (addr 5952): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
                  zigbee.0
                  	2025-02-02 19:15:42.091	info	0xa4c138309c89ab50 (addr 28969): TS011F_plug_1 - Tuya Smart plug (with power monitoring) (Router)
                  zigbee.0
                  	2025-02-02 19:15:42.090	info	0xa4c138c700eed6ce (addr 51531): TS0201 - Tuya Temperature & humidity sensor with display (EndDevice)
                  zigbee.0
                  	2025-02-02 19:15:42.088	info	0x282c02bfffeee4ec (addr 26254): 3RVS01031Z - Third Reality Zigbee vibration sensor (EndDevice)
                  zigbee.0
                  	2025-02-02 19:15:42.063	info	Currently 6 devices are joined:
                  zigbee.0
                  	2025-02-02 19:15:42.051	info	--> transmitPower : normal
                  zigbee.0
                  	2025-02-02 19:15:42.051	info	Unable to disable LED, unsupported function.
                  zigbee.0
                  	2025-02-02 19:15:42.050	info	Coordinator firmware version: {"type":"zStack3x0","meta":{"transportrev":2,"product":1,"majorrel":2,"minorrel":7,"maintrel":1,"revision":20240710}}
                  zigbee.0
                  	2025-02-02 19:15:40.553	info	Installed Version: iobroker.zigbee@1.10.14
                  zigbee.0
                  	2025-02-02 19:15:40.294	info	Starting Zigbee npm ...
                  zigbee.0
                  	2025-02-02 19:15:40.293	info	delete old Backup files. keep only last 10
                  zigbee.0
                  	2025-02-02 19:15:40.235	info	Apply converter from module: /opt/iobroker/iobroker-data/zigbee_0/TZ3210_c7nc9w3c.js
                  

                  Energiemessung funktioniert auch noch von hier aus alles tip top.
                  👏 👏

                  AsgothianA Offline
                  AsgothianA Offline
                  Asgothian
                  Developer
                  wrote on last edited by
                  #16

                  @mcbeath sagte in Zigbee Aktor nicht alle Kanäle steuerbar:

                  Jetzt läuft es!
                  das Objekt "state" habe ich manuell gelöscht, war vorher I1 und gab fehler raus.
                  I2 und I3 funktionieren jetzt auch. Muss nur noch die Energiemessung checken, dann ist alles TOP!

                  für die Zukunft - keine Objekte im Zigbee Objektbaum manuell löschen - dazu gibt es im Adapter einen Button "state cleanup". Der löscht alles was durch Anpassung von Device-Definitionen so nicht mehr unterstützt wird.

                  A.

                  ioBroker auf RPi4 - Hardware soweit wie möglich via Zigbee.
                  "Shit don't work" ist keine Fehlermeldung, sondern ein Fluch.

                  M 1 Reply Last reply
                  0
                  • AsgothianA Asgothian

                    @mcbeath sagte in Zigbee Aktor nicht alle Kanäle steuerbar:

                    Jetzt läuft es!
                    das Objekt "state" habe ich manuell gelöscht, war vorher I1 und gab fehler raus.
                    I2 und I3 funktionieren jetzt auch. Muss nur noch die Energiemessung checken, dann ist alles TOP!

                    für die Zukunft - keine Objekte im Zigbee Objektbaum manuell löschen - dazu gibt es im Adapter einen Button "state cleanup". Der löscht alles was durch Anpassung von Device-Definitionen so nicht mehr unterstützt wird.

                    A.

                    M Offline
                    M Offline
                    McBeath
                    wrote on last edited by
                    #17

                    @asgothian
                    Okay, war bisher auch das erste mal. 😲

                    Wo versteckt sich den der clean up button?
                    Bin scheinbar zu blöd ihn zu finden, hab gerade schon mehrfach alles durchsucht... ich bin blind 😵

                    AsgothianA 1 Reply Last reply
                    0
                    • M McBeath

                      @asgothian
                      Okay, war bisher auch das erste mal. 😲

                      Wo versteckt sich den der clean up button?
                      Bin scheinbar zu blöd ihn zu finden, hab gerade schon mehrfach alles durchsucht... ich bin blind 😵

                      AsgothianA Offline
                      AsgothianA Offline
                      Asgothian
                      Developer
                      wrote on last edited by
                      #18

                      @mcbeath Screenshot 2024-11-27 at 15.48.59.png

                      ioBroker auf RPi4 - Hardware soweit wie möglich via Zigbee.
                      "Shit don't work" ist keine Fehlermeldung, sondern ein Fluch.

                      HomoranH M 2 Replies Last reply
                      0
                      • AsgothianA Asgothian

                        @mcbeath Screenshot 2024-11-27 at 15.48.59.png

                        HomoranH Do not disturb
                        HomoranH Do not disturb
                        Homoran
                        Global Moderator Administrators
                        wrote on last edited by
                        #19

                        @asgothian sagte in Zigbee Aktor nicht alle Kanäle steuerbar:

                        @mcbeath Screenshot 2024-11-27 at 15.48.59.png

                        nur als Anregung:
                        kann man da ein anderes Icon nehmen?
                        Auf den Kacheln bedeutet das reconfigure.
                        Ich hätte hier erwartet: reconfigure all

                        kein Support per PN! - Fragen im Forum stellen -
                        Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                        Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
                        der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                        AsgothianA 1 Reply Last reply
                        0
                        • AsgothianA Asgothian

                          @mcbeath Screenshot 2024-11-27 at 15.48.59.png

                          M Offline
                          M Offline
                          McBeath
                          wrote on last edited by
                          #20

                          @asgothian
                          Okay, hatte ich jetzt auch nicht erkannt.

                          1 Reply Last reply
                          0
                          • HomoranH Homoran

                            @asgothian sagte in Zigbee Aktor nicht alle Kanäle steuerbar:

                            @mcbeath Screenshot 2024-11-27 at 15.48.59.png

                            nur als Anregung:
                            kann man da ein anderes Icon nehmen?
                            Auf den Kacheln bedeutet das reconfigure.
                            Ich hätte hier erwartet: reconfigure all

                            AsgothianA Offline
                            AsgothianA Offline
                            Asgothian
                            Developer
                            wrote on last edited by
                            #21

                            @homoran sagte in Zigbee Aktor nicht alle Kanäle steuerbar:

                            nur als Anregung:
                            kann man da ein anderes Icon nehmen?
                            Auf den Kacheln bedeutet das reconfigure.
                            Ich hätte hier erwartet: reconfigure all

                            Ich bin für vorschläge offen. Beliebiges Material icon würde gehen. :) (Icons)

                            ioBroker auf RPi4 - Hardware soweit wie möglich via Zigbee.
                            "Shit don't work" ist keine Fehlermeldung, sondern ein Fluch.

                            HomoranH 1 Reply Last reply
                            1
                            • AsgothianA Asgothian

                              @homoran sagte in Zigbee Aktor nicht alle Kanäle steuerbar:

                              nur als Anregung:
                              kann man da ein anderes Icon nehmen?
                              Auf den Kacheln bedeutet das reconfigure.
                              Ich hätte hier erwartet: reconfigure all

                              Ich bin für vorschläge offen. Beliebiges Material icon würde gehen. :) (Icons)

                              HomoranH Do not disturb
                              HomoranH Do not disturb
                              Homoran
                              Global Moderator Administrators
                              wrote on last edited by
                              #22

                              @asgothian Danke!
                              auf die Schnelle hab ich jetzt nichts wirklich passendes und erkennbares gefunden

                              Screenshot_20250203-094357_Firefox.jpg

                              kein Support per PN! - Fragen im Forum stellen -
                              Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                              Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
                              der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                              AsgothianA 1 Reply Last reply
                              0
                              • HomoranH Homoran

                                @asgothian Danke!
                                auf die Schnelle hab ich jetzt nichts wirklich passendes und erkennbares gefunden

                                Screenshot_20250203-094357_Firefox.jpg

                                AsgothianA Offline
                                AsgothianA Offline
                                Asgothian
                                Developer
                                wrote on last edited by Asgothian
                                #23

                                @homoran Es scheint ich hab gepatzt beim bereitstellen des Links. Ich hab nur zugriff auf die Icons hier:

                                https://materializecss.com/icons.html

                                Da gibt es die Cleaning-services nicht :/

                                A.
                                Nachtrag: was hältst du von dem hier :
                                Screenshot 2025-02-03 at 11.27.15.png

                                Im Adapter Kontext: Screenshot 2025-02-03 at 11.30.23.png

                                ioBroker auf RPi4 - Hardware soweit wie möglich via Zigbee.
                                "Shit don't work" ist keine Fehlermeldung, sondern ein Fluch.

                                HomoranH 1 Reply Last reply
                                0
                                • AsgothianA Asgothian

                                  @homoran Es scheint ich hab gepatzt beim bereitstellen des Links. Ich hab nur zugriff auf die Icons hier:

                                  https://materializecss.com/icons.html

                                  Da gibt es die Cleaning-services nicht :/

                                  A.
                                  Nachtrag: was hältst du von dem hier :
                                  Screenshot 2025-02-03 at 11.27.15.png

                                  Im Adapter Kontext: Screenshot 2025-02-03 at 11.30.23.png

                                  HomoranH Do not disturb
                                  HomoranH Do not disturb
                                  Homoran
                                  Global Moderator Administrators
                                  wrote on last edited by
                                  #24

                                  @asgothian sagte in Zigbee Aktor nicht alle Kanäle steuerbar:

                                  ich hab gepatzt beim bereitstellen des Links.

                                  shit happens!

                                  da finde ich auf Anhieb auch nix.
                                  Sweep macht der
                                  Screenshot_20250203-112824_Firefox.jpg

                                  😂

                                  EDIT:
                                  Dein edit gefällt mir.
                                  Das Icon muss passen, nicht dessen Bezeichnung!

                                  kein Support per PN! - Fragen im Forum stellen -
                                  Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                                  Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
                                  der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                                  AsgothianA 1 Reply Last reply
                                  1
                                  • HomoranH Homoran

                                    @asgothian sagte in Zigbee Aktor nicht alle Kanäle steuerbar:

                                    ich hab gepatzt beim bereitstellen des Links.

                                    shit happens!

                                    da finde ich auf Anhieb auch nix.
                                    Sweep macht der
                                    Screenshot_20250203-112824_Firefox.jpg

                                    😂

                                    EDIT:
                                    Dein edit gefällt mir.
                                    Das Icon muss passen, nicht dessen Bezeichnung!

                                    AsgothianA Offline
                                    AsgothianA Offline
                                    Asgothian
                                    Developer
                                    wrote on last edited by
                                    #25

                                    @homoran Ok.. kommt geändert in die 1.10.15 und 2.0 :)

                                    A.

                                    ioBroker auf RPi4 - Hardware soweit wie möglich via Zigbee.
                                    "Shit don't work" ist keine Fehlermeldung, sondern ein Fluch.

                                    1 Reply Last reply
                                    1

                                    Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                    Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                    With your input, this post could be even better 💗

                                    Register Login
                                    Reply
                                    • Reply as topic
                                    Log in to reply
                                    • Oldest to Newest
                                    • Newest to Oldest
                                    • Most Votes


                                    Support us

                                    ioBroker
                                    Community Adapters
                                    Donate

                                    573

                                    Online

                                    32.8k

                                    Users

                                    82.7k

                                    Topics

                                    1.3m

                                    Posts
                                    Community
                                    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                    ioBroker Community 2014-2025
                                    logo
                                    • Login

                                    • Don't have an account? Register

                                    • Login or register to search.
                                    • First post
                                      Last post
                                    0
                                    • Home
                                    • Recent
                                    • Tags
                                    • Unread 0
                                    • Categories
                                    • Unreplied
                                    • Popular
                                    • GitHub
                                    • Docu
                                    • Hilfe