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. Entwicklung
  4. (GELÖST) zigbee-herdsmann-converters / wie manuell updaten?

NEWS

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    17
    1
    555

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

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

(GELÖST) zigbee-herdsmann-converters / wie manuell updaten?

Scheduled Pinned Locked Moved Entwicklung
herdsmanzigbee
129 Posts 13 Posters 27.3k Views 12 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.
  • Thomas BraunT Thomas Braun

    @diamand2k22 sagte in (GELÖST) zigbee-herdsmann-converters / wie manuell updaten?:

    hab das mal reinkopiert

    Was wo reinkopiert?

    D Offline
    D Offline
    Diamand2k22
    wrote on last edited by
    #46

    @thomas-braun

    @david-jung said in Hama Smartes Heizkörper-Thermostat:

    @david-jung
    so, ich habe folgendes gemacht:

    die Datei: /opt/iobroker/node_modules/zigbee-herdsman-converters/devices/saswell.js

    etwas erweitert, jetzt kann ich die Ist-Temperatur ablesen, so wie die Soll-Temperatur setzen/lesen.
    Den Modus (heizen/auto/aus) lesen, setzen.
    Ventil Status ablesen.
    Und Offset für Temperatur setzen/lesen.

    /opt/iobroker/node_modules/zigbee-herdsman-converters/devices/saswell.js

    const exposes = require('../lib/exposes');
    const fz = {...require('../converters/fromZigbee'), legacy: require('../lib/legacy').fromZigbee};
    const tz = require('../converters/toZigbee');
    const tuya = require('../lib/tuya');
    const reporting = require('../lib/reporting');
    const e = exposes.presets;
    const ea = exposes.access;
    
    module.exports = [
        {
            fingerprint: [{modelID: 'GbxAXL2\u0000', manufacturerName: '_TYST11_KGbxAXL2'},
                {modelID: 'uhszj9s\u0000', manufacturerName: '_TYST11_zuhszj9s'},
                {modelID: '88teujp\u0000', manufacturerName: '_TYST11_c88teujp'},
                {modelID: 'w7cahqs\u0000', manufacturerName: '_TYST11_yw7cahqs'},
                {modelID: 'w7cahqs', manufacturerName: '_TYST11_yw7cahqs'},
                {modelID: 'TS0601', manufacturerName: '_TZE200_c88teujp'},
                {modelID: 'TS0601', manufacturerName: '_TZE200_yw7cahqs'},
                {modelID: 'TS0601', manufacturerName: '_TZE200_azqp6ssj'},
                {modelID: 'TS0601', manufacturerName: '_TZE200_bvu2wnxz'},
                {modelID: 'TS0601', manufacturerName: '_TZE200_zuhszj9s'},
                {modelID: 'TS0601', manufacturerName: '_TZE200_9gvruqf5'},
                {modelID: 'TS0601', manufacturerName: '_TZE200_zr9c0day'},
            ],
            model: 'SEA801-Zigbee/SEA802-Zigbee',
            vendor: 'Saswell',
            description: 'Thermostatic radiator valve',
            whiteLabel: [{vendor: 'HiHome', model: 'WZB-TRVL'}, {vendor: 'Hama', model: '00176592'},
                {vendor: 'RTX', model: 'ZB-RT1'}],
            fromZigbee: [fz.saswell_thermostat, fz.ignore_tuya_set_time, fz.ignore_basic_report, fz.legacy.tuya_thermostat_weekly_schedule],
            toZigbee: [tz.saswell_thermostat_current_heating_setpoint, tz.saswell_thermostat_mode, tz.saswell_thermostat_away,
                tz.saswell_thermostat_child_lock, tz.saswell_thermostat_window_detection, tz.saswell_thermostat_frost_detection,
                tz.saswell_thermostat_calibration, tz.saswell_thermostat_anti_scaling, tz.tuya_thermostat_weekly_schedule],
            onEvent: tuya.onEventSetTime,
            meta: {
                thermostat: {
                    weeklyScheduleMaxTransitions: 4,
                    weeklyScheduleSupportedModes: [1], // bits: 0-heat present, 1-cool present (dec: 1-heat,2-cool,3-heat+cool)
                    weeklyScheduleConversion: 'saswell',
                },
            },
            configure: async (device, coordinatorEndpoint, logger) => {
                const endpoint = device.getEndpoint(1);
                await reporting.bind(endpoint, coordinatorEndpoint, ['genBasic']);
            },
            exposes: [e.battery_low(), e.window_detection(), e.child_lock(),
                exposes.binary('heating', ea.STATE, 'ON', 'OFF').withDescription('Device valve is open or closed (heating or not)'),
                exposes.climate()
                    .withSetpoint('current_heating_setpoint', 5, 30, 0.5, ea.STATE_SET).withLocalTemperature(ea.STATE)
                    .withSystemMode(['off', 'heat', 'auto'], ea.STATE_SET)
                    // Range is -6 - 6 and step 1: https://github.com/Koenkk/zigbee2mqtt/issues/11777
                    .withLocalTemperatureCalibration(-6, 6, 1, ea.STATE_SET)
                    .withAwayMode()],
        },
    	{
    		/*added by djung 10.11.2022*/
    	fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_h4cgnbzg'}],
            model: 'HZ',
            vendor: 'HAMA',
            description: 'Thermostatic radiator valve',
            whiteLabel: [{vendor: 'Hama', model: 'XXXxxxXXX'},],
            fromZigbee: [fz.saswell_thermostat],
            toZigbee: [tz.saswell_thermostat_current_heating_setpoint, tz.saswell_thermostat_mode, 
                tz.saswell_thermostat_calibration],
            onEvent: tuya.onEventSetTime,
            configure: async (device, coordinatorEndpoint, logger) => {
                const endpoint = device.getEndpoint(1);
                await reporting.bind(endpoint, coordinatorEndpoint, ['genBasic']);
            },
            exposes: [
    			e.battery_low(),
    			/*e.switch(),*/
    			/*e.lock(),*/
    			exposes.binary('heating', ea.STATE, 'ON', 'OFF').withDescription('Device valve is open or closed (heating or not)'),
    		
                exposes.climate()
                    .withSetpoint('current_heating_setpoint', 5, 30, 0.5, ea.STATE_SET).withLocalTemperature(ea.STATE)
                    .withSystemMode(['off', 'heat', 'auto'], ea.STATE_SET)
                    // Range is -6 - 6 and step 1: https://github.com/Koenkk/zigbee2mqtt/issues/11777
                    .withLocalTemperatureCalibration(-6, 6, 1, ea.STATE_SET)
                    ],
        },
    ];
    

    soll man das irgendwo auf github oder so noch posten? Wenn ja, bitte zeigen wo =)
    Grüße.
    David.

    Thomas BraunT 1 Reply Last reply
    0
    • D Diamand2k22

      @thomas-braun

      @david-jung said in Hama Smartes Heizkörper-Thermostat:

      @david-jung
      so, ich habe folgendes gemacht:

      die Datei: /opt/iobroker/node_modules/zigbee-herdsman-converters/devices/saswell.js

      etwas erweitert, jetzt kann ich die Ist-Temperatur ablesen, so wie die Soll-Temperatur setzen/lesen.
      Den Modus (heizen/auto/aus) lesen, setzen.
      Ventil Status ablesen.
      Und Offset für Temperatur setzen/lesen.

      /opt/iobroker/node_modules/zigbee-herdsman-converters/devices/saswell.js

      const exposes = require('../lib/exposes');
      const fz = {...require('../converters/fromZigbee'), legacy: require('../lib/legacy').fromZigbee};
      const tz = require('../converters/toZigbee');
      const tuya = require('../lib/tuya');
      const reporting = require('../lib/reporting');
      const e = exposes.presets;
      const ea = exposes.access;
      
      module.exports = [
          {
              fingerprint: [{modelID: 'GbxAXL2\u0000', manufacturerName: '_TYST11_KGbxAXL2'},
                  {modelID: 'uhszj9s\u0000', manufacturerName: '_TYST11_zuhszj9s'},
                  {modelID: '88teujp\u0000', manufacturerName: '_TYST11_c88teujp'},
                  {modelID: 'w7cahqs\u0000', manufacturerName: '_TYST11_yw7cahqs'},
                  {modelID: 'w7cahqs', manufacturerName: '_TYST11_yw7cahqs'},
                  {modelID: 'TS0601', manufacturerName: '_TZE200_c88teujp'},
                  {modelID: 'TS0601', manufacturerName: '_TZE200_yw7cahqs'},
                  {modelID: 'TS0601', manufacturerName: '_TZE200_azqp6ssj'},
                  {modelID: 'TS0601', manufacturerName: '_TZE200_bvu2wnxz'},
                  {modelID: 'TS0601', manufacturerName: '_TZE200_zuhszj9s'},
                  {modelID: 'TS0601', manufacturerName: '_TZE200_9gvruqf5'},
                  {modelID: 'TS0601', manufacturerName: '_TZE200_zr9c0day'},
              ],
              model: 'SEA801-Zigbee/SEA802-Zigbee',
              vendor: 'Saswell',
              description: 'Thermostatic radiator valve',
              whiteLabel: [{vendor: 'HiHome', model: 'WZB-TRVL'}, {vendor: 'Hama', model: '00176592'},
                  {vendor: 'RTX', model: 'ZB-RT1'}],
              fromZigbee: [fz.saswell_thermostat, fz.ignore_tuya_set_time, fz.ignore_basic_report, fz.legacy.tuya_thermostat_weekly_schedule],
              toZigbee: [tz.saswell_thermostat_current_heating_setpoint, tz.saswell_thermostat_mode, tz.saswell_thermostat_away,
                  tz.saswell_thermostat_child_lock, tz.saswell_thermostat_window_detection, tz.saswell_thermostat_frost_detection,
                  tz.saswell_thermostat_calibration, tz.saswell_thermostat_anti_scaling, tz.tuya_thermostat_weekly_schedule],
              onEvent: tuya.onEventSetTime,
              meta: {
                  thermostat: {
                      weeklyScheduleMaxTransitions: 4,
                      weeklyScheduleSupportedModes: [1], // bits: 0-heat present, 1-cool present (dec: 1-heat,2-cool,3-heat+cool)
                      weeklyScheduleConversion: 'saswell',
                  },
              },
              configure: async (device, coordinatorEndpoint, logger) => {
                  const endpoint = device.getEndpoint(1);
                  await reporting.bind(endpoint, coordinatorEndpoint, ['genBasic']);
              },
              exposes: [e.battery_low(), e.window_detection(), e.child_lock(),
                  exposes.binary('heating', ea.STATE, 'ON', 'OFF').withDescription('Device valve is open or closed (heating or not)'),
                  exposes.climate()
                      .withSetpoint('current_heating_setpoint', 5, 30, 0.5, ea.STATE_SET).withLocalTemperature(ea.STATE)
                      .withSystemMode(['off', 'heat', 'auto'], ea.STATE_SET)
                      // Range is -6 - 6 and step 1: https://github.com/Koenkk/zigbee2mqtt/issues/11777
                      .withLocalTemperatureCalibration(-6, 6, 1, ea.STATE_SET)
                      .withAwayMode()],
          },
      	{
      		/*added by djung 10.11.2022*/
      	fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_h4cgnbzg'}],
              model: 'HZ',
              vendor: 'HAMA',
              description: 'Thermostatic radiator valve',
              whiteLabel: [{vendor: 'Hama', model: 'XXXxxxXXX'},],
              fromZigbee: [fz.saswell_thermostat],
              toZigbee: [tz.saswell_thermostat_current_heating_setpoint, tz.saswell_thermostat_mode, 
                  tz.saswell_thermostat_calibration],
              onEvent: tuya.onEventSetTime,
              configure: async (device, coordinatorEndpoint, logger) => {
                  const endpoint = device.getEndpoint(1);
                  await reporting.bind(endpoint, coordinatorEndpoint, ['genBasic']);
              },
              exposes: [
      			e.battery_low(),
      			/*e.switch(),*/
      			/*e.lock(),*/
      			exposes.binary('heating', ea.STATE, 'ON', 'OFF').withDescription('Device valve is open or closed (heating or not)'),
      		
                  exposes.climate()
                      .withSetpoint('current_heating_setpoint', 5, 30, 0.5, ea.STATE_SET).withLocalTemperature(ea.STATE)
                      .withSystemMode(['off', 'heat', 'auto'], ea.STATE_SET)
                      // Range is -6 - 6 and step 1: https://github.com/Koenkk/zigbee2mqtt/issues/11777
                      .withLocalTemperatureCalibration(-6, 6, 1, ea.STATE_SET)
                      ],
          },
      ];
      

      soll man das irgendwo auf github oder so noch posten? Wenn ja, bitte zeigen wo =)
      Grüße.
      David.

      Thomas BraunT Online
      Thomas BraunT Online
      Thomas Braun
      Most Active
      wrote on last edited by
      #47

      @diamand2k22

      Alles? Das war nur als Denkansatz für dich gedacht.
      Ich hätte da erstmal nur die Manufacturer-ID hinzugefügt. Sind ja schon ein paar Varianten von dem Thermostat mit der Modellbezeichnung TS0601 vorhanden.

      Linux-Werkzeugkasten:
      https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
      NodeJS Fixer Skript:
      https://forum.iobroker.net/topic/68035/iob-node-fix-skript
      iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

      D 1 Reply Last reply
      0
      • Thomas BraunT Thomas Braun

        @diamand2k22

        Alles? Das war nur als Denkansatz für dich gedacht.
        Ich hätte da erstmal nur die Manufacturer-ID hinzugefügt. Sind ja schon ein paar Varianten von dem Thermostat mit der Modellbezeichnung TS0601 vorhanden.

        D Offline
        D Offline
        Diamand2k22
        wrote on last edited by
        #48

        @thomas-braun

        hab die manufactor id eingefügt, jetzt erkennt er das thermostat, liefert aber keine werte!

        2022-11-15 21:35:02.182 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #2 with data {"dp":2,"datatype":4,"data":{"type":"Buffer","data":[2]}}
        2022-11-15 21:35:02.434 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #4 with data {"dp":4,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,50]}}
        2022-11-15 21:35:02.551 - info: dwd.0 (92835) starting. Version 2.8.3 in /opt/iobroker/node_modules/iobroker.dwd, node: v16.18.1, js-controller: 4.0.23
        2022-11-15 21:35:02.555 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #5 with data {"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,200]}}
        2022-11-15 21:35:02.704 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #7 with data {"dp":7,"datatype":1,"data":{"type":"Buffer","data":[0]}}
        2022-11-15 21:35:02.789 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #28 with data {"dp":28,"datatype":0,"data":{"type":"Buffer","data":[1,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
        2022-11-15 21:35:02.906 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #29 with data {"dp":29,"datatype":0,"data":{"type":"Buffer","data":[2,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
        2022-11-15 21:35:03.032 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #30 with data {"dp":30,"datatype":0,"data":{"type":"Buffer","data":[3,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
        2022-11-15 21:35:03.144 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #31 with data {"dp":31,"datatype":0,"data":{"type":"Buffer","data":[4,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
        2022-11-15 21:35:03.264 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #32 with data {"dp":32,"datatype":0,"data":{"type":"Buffer","data":[5,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
        2022-11-15 21:35:03.380 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #33 with data {"dp":33,"datatype":0,"data":{"type":"Buffer","data":[6,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
        2022-11-15 21:35:03.502 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #34 with data {"dp":34,"datatype":0,"data":{"type":"Buffer","data":[7,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
        2022-11-15 21:35:03.615 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #35 with data {"dp":35,"datatype":5,"data":{"type":"Buffer","data":[0]}}
        2022-11-15 21:35:03.731 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #36 with data {"dp":36,"datatype":1,"data":{"type":"Buffer","data":[0]}}
        2022-11-15 21:35:03.848 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #39 with data {"dp":39,"datatype":1,"data":{"type":"Buffer","data":[0]}}
        2022-11-15 21:35:03.968 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #47 with data {"dp":47,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}
        

        631ff6c6-6764-46c7-a7ab-3cfe0302bbb8-image.png

        Thomas BraunT 1 Reply Last reply
        0
        • D Diamand2k22

          @thomas-braun

          hab die manufactor id eingefügt, jetzt erkennt er das thermostat, liefert aber keine werte!

          2022-11-15 21:35:02.182 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #2 with data {"dp":2,"datatype":4,"data":{"type":"Buffer","data":[2]}}
          2022-11-15 21:35:02.434 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #4 with data {"dp":4,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,50]}}
          2022-11-15 21:35:02.551 - info: dwd.0 (92835) starting. Version 2.8.3 in /opt/iobroker/node_modules/iobroker.dwd, node: v16.18.1, js-controller: 4.0.23
          2022-11-15 21:35:02.555 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #5 with data {"dp":5,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,200]}}
          2022-11-15 21:35:02.704 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #7 with data {"dp":7,"datatype":1,"data":{"type":"Buffer","data":[0]}}
          2022-11-15 21:35:02.789 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #28 with data {"dp":28,"datatype":0,"data":{"type":"Buffer","data":[1,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
          2022-11-15 21:35:02.906 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #29 with data {"dp":29,"datatype":0,"data":{"type":"Buffer","data":[2,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
          2022-11-15 21:35:03.032 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #30 with data {"dp":30,"datatype":0,"data":{"type":"Buffer","data":[3,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
          2022-11-15 21:35:03.144 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #31 with data {"dp":31,"datatype":0,"data":{"type":"Buffer","data":[4,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
          2022-11-15 21:35:03.264 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #32 with data {"dp":32,"datatype":0,"data":{"type":"Buffer","data":[5,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
          2022-11-15 21:35:03.380 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #33 with data {"dp":33,"datatype":0,"data":{"type":"Buffer","data":[6,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
          2022-11-15 21:35:03.502 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #34 with data {"dp":34,"datatype":0,"data":{"type":"Buffer","data":[7,6,0,0,120,8,0,0,160,18,0,0,220,20,0,0,200]}}
          2022-11-15 21:35:03.615 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #35 with data {"dp":35,"datatype":5,"data":{"type":"Buffer","data":[0]}}
          2022-11-15 21:35:03.731 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #36 with data {"dp":36,"datatype":1,"data":{"type":"Buffer","data":[0]}}
          2022-11-15 21:35:03.848 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #39 with data {"dp":39,"datatype":1,"data":{"type":"Buffer","data":[0]}}
          2022-11-15 21:35:03.968 - warn: zigbee.0 (92569) zigbee-herdsman-converters:SaswellThermostat: Unrecognized DP #47 with data {"dp":47,"datatype":2,"data":{"type":"Buffer","data":[0,0,0,0]}}
          

          631ff6c6-6764-46c7-a7ab-3cfe0302bbb8-image.png

          Thomas BraunT Online
          Thomas BraunT Online
          Thomas Braun
          Most Active
          wrote on last edited by Thomas Braun
          #49

          @diamand2k22

          Ich kann dir da nicht weiterhelfen.
          Vielleicht weiß @david-jung ja noch was dazu.

          Linux-Werkzeugkasten:
          https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
          NodeJS Fixer Skript:
          https://forum.iobroker.net/topic/68035/iob-node-fix-skript
          iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

          1 Reply Last reply
          0
          • D Offline
            D Offline
            Diamand2k22
            wrote on last edited by
            #50

            @thomas-braun

            kann es sein, dass mit den Rechten was nicht stimmt?`

            $ iobroker url ioBroker/ioBroker.zigbee --host pi4b --debug
            
            install ioBroker/ioBroker.zigbee
            
            NPM version: 8.19.2
            
            Installing ioBroker/ioBroker.zigbee... (System call)
            
            npm WARN cleanup Failed to remove some directories [npm WARN cleanup [
            
            npm WARN cleanup '/opt/iobroker/node_modules/.zigbee-herdsman-converters-DzgWyYTV',npm WARN cleanup [Error: EACCES: permission denied, scandir '/opt/iobroker/node_modules/.zigbee-herdsman-converters-DzgWyYTV/devices'] {npm WARN cleanup errno: -13,npm WARN cleanup code: 'EACCES',npm WARN cleanup syscall: 'scandir',npm WARN cleanup path: '/opt/iobroker/node_modules/.zigbee-herdsman-converters-DzgWyYTV/devices'npm WARN cleanup }npm WARN cleanup ]npm WARN cleanup 
            
            Thomas BraunT 1 Reply Last reply
            0
            • D Diamand2k22

              @thomas-braun

              kann es sein, dass mit den Rechten was nicht stimmt?`

              $ iobroker url ioBroker/ioBroker.zigbee --host pi4b --debug
              
              install ioBroker/ioBroker.zigbee
              
              NPM version: 8.19.2
              
              Installing ioBroker/ioBroker.zigbee... (System call)
              
              npm WARN cleanup Failed to remove some directories [npm WARN cleanup [
              
              npm WARN cleanup '/opt/iobroker/node_modules/.zigbee-herdsman-converters-DzgWyYTV',npm WARN cleanup [Error: EACCES: permission denied, scandir '/opt/iobroker/node_modules/.zigbee-herdsman-converters-DzgWyYTV/devices'] {npm WARN cleanup errno: -13,npm WARN cleanup code: 'EACCES',npm WARN cleanup syscall: 'scandir',npm WARN cleanup path: '/opt/iobroker/node_modules/.zigbee-herdsman-converters-DzgWyYTV/devices'npm WARN cleanup }npm WARN cleanup ]npm WARN cleanup 
              
              Thomas BraunT Online
              Thomas BraunT Online
              Thomas Braun
              Most Active
              wrote on last edited by
              #51

              @diamand2k22 sagte in (GELÖST) zigbee-herdsmann-converters / wie manuell updaten?:

              dass mit den Rechten was nicht stimmt?`

              iob stop
              iob fix
              iob start
              

              Linux-Werkzeugkasten:
              https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
              NodeJS Fixer Skript:
              https://forum.iobroker.net/topic/68035/iob-node-fix-skript
              iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

              D 1 Reply Last reply
              0
              • Thomas BraunT Thomas Braun

                @diamand2k22 sagte in (GELÖST) zigbee-herdsmann-converters / wie manuell updaten?:

                dass mit den Rechten was nicht stimmt?`

                iob stop
                iob fix
                iob start
                
                D Offline
                D Offline
                Diamand2k22
                wrote on last edited by
                #52

                @thomas-braun

                danke dir für die schnelle Rückmeldung.
                Hab's dann doch selber hinbekommen!

                Gruß

                DJMarc75D 1 Reply Last reply
                0
                • D Diamand2k22

                  @thomas-braun

                  danke dir für die schnelle Rückmeldung.
                  Hab's dann doch selber hinbekommen!

                  Gruß

                  DJMarc75D Offline
                  DJMarc75D Offline
                  DJMarc75
                  wrote on last edited by
                  #53

                  @diamand2k22 sagte in (GELÖST) zigbee-herdsmann-converters / wie manuell updaten?:

                  Hab's dann doch selber hinbekommen!

                  Und des Rätsels Lösung war ?
                  Vll hilft das auch anderen Mitlesenden !

                  Lehrling seit 1975 !!!
                  Beitrag geholfen ? dann gerne ein upvote rechts unten im Beitrag klicken ;)
                  https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge

                  D 1 Reply Last reply
                  0
                  • DJMarc75D DJMarc75

                    @diamand2k22 sagte in (GELÖST) zigbee-herdsmann-converters / wie manuell updaten?:

                    Hab's dann doch selber hinbekommen!

                    Und des Rätsels Lösung war ?
                    Vll hilft das auch anderen Mitlesenden !

                    D Offline
                    D Offline
                    Diamand2k22
                    wrote on last edited by
                    #54

                    @djmarc75

                    hat Thomas schon geschrieben.

                    iob stop
                    iob fix
                    iob start
                    

                    Gruß

                    Thomas BraunT 1 Reply Last reply
                    0
                    • D Diamand2k22

                      @djmarc75

                      hat Thomas schon geschrieben.

                      iob stop
                      iob fix
                      iob start
                      

                      Gruß

                      Thomas BraunT Online
                      Thomas BraunT Online
                      Thomas Braun
                      Most Active
                      wrote on last edited by
                      #55

                      @diamand2k22

                      Dann hast du da mal mit falschen Rechten hantiert.
                      root login?

                      Linux-Werkzeugkasten:
                      https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                      NodeJS Fixer Skript:
                      https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                      iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                      P 1 Reply Last reply
                      0
                      • D Offline
                        D Offline
                        Diamand2k22
                        wrote on last edited by Diamand2k22
                        #56

                        @thomas-braun

                        kann sein Thomas, hab ich aber wieder hingebogen bekommen.

                        @Asgothian
                        hab mir jetzt ne eigene ketotek.js für mein Heizkörperthermostat gebastelt.
                        Jetzt funktioniert es wunderbar und ich hab keine Unrecognized DP's mehr und kann es steuern und empfange Temperaturen.
                        Was mich nur interessieren würde, wie bekomme ich da ein vernünftiges Bild rein?
                        Kannst du das Thermostat aufnehmen?

                        35435839-22f6-4619-b144-caf46564bd54-image.png

                        207436ce-52d0-4f3d-9461-be1c73952317-image.png

                        017cd8ca-653c-426c-b51c-54584e40d73c-image.png

                        252632ff-147e-4494-904e-d3209eae375a-image.png

                        550af260-fee3-420e-a6e0-140cdba890df-image.png

                        Gruß

                        D 1 Reply Last reply
                        0
                        • Thomas BraunT Thomas Braun

                          @diamand2k22

                          Dann hast du da mal mit falschen Rechten hantiert.
                          root login?

                          P Offline
                          P Offline
                          Patrick Kenzler
                          wrote on last edited by
                          #57

                          @thomas-braun könntest du deinen externen Konverter zur Verfügung stellen? Sitze schon seit Tagen und komme nicht weiter.

                          Thomas BraunT 1 Reply Last reply
                          0
                          • P Patrick Kenzler

                            @thomas-braun könntest du deinen externen Konverter zur Verfügung stellen? Sitze schon seit Tagen und komme nicht weiter.

                            Thomas BraunT Online
                            Thomas BraunT Online
                            Thomas Braun
                            Most Active
                            wrote on last edited by
                            #58

                            @patrick-kenzler

                            Meinen was? Wüsste nicht das ich sowas im Einsatz hätte.

                            Linux-Werkzeugkasten:
                            https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                            NodeJS Fixer Skript:
                            https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                            iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                            P 1 Reply Last reply
                            0
                            • Thomas BraunT Thomas Braun

                              @patrick-kenzler

                              Meinen was? Wüsste nicht das ich sowas im Einsatz hätte.

                              P Offline
                              P Offline
                              Patrick Kenzler
                              wrote on last edited by
                              #59

                              @thomas-braun sorry, die Frage sollte eigentlich an @Diamand2k22 gehen habe mich verklickt^^

                              D 1 Reply Last reply
                              0
                              • P Patrick Kenzler

                                @thomas-braun sorry, die Frage sollte eigentlich an @Diamand2k22 gehen habe mich verklickt^^

                                D Offline
                                D Offline
                                Diamand2k22
                                wrote on last edited by
                                #60

                                @patrick-kenzler

                                Hast du auch so ein ketotek Teil von Amaz**?

                                P 1 Reply Last reply
                                0
                                • D Diamand2k22

                                  @patrick-kenzler

                                  Hast du auch so ein ketotek Teil von Amaz**?

                                  P Offline
                                  P Offline
                                  Patrick Kenzler
                                  wrote on last edited by
                                  #61

                                  @diamand2k22 said in (GELÖST) zigbee-herdsmann-converters / wie manuell updaten?:

                                  @patrick-kenzler

                                  Hast du auch so ein ketotek Teil von Amaz**?

                                  nein, aber Avatto ME167 das wird auch unter _TZE200_bvu2wnxz geführt.

                                  1 Reply Last reply
                                  0
                                  • D Offline
                                    D Offline
                                    Diamand2k22
                                    wrote on last edited by
                                    #62

                                    @patrick-kenzler

                                    06b9e9de-716c-4a03-95a1-94f34a45ccf6-avatto_me167.js

                                    Hab's angepasst für dein ME167 Thermostat.
                                    Probiers mal aus.

                                    Du weißt ja wo die Datei hin muss oder?

                                    P 1 Reply Last reply
                                    0
                                    • D Diamand2k22

                                      @patrick-kenzler

                                      06b9e9de-716c-4a03-95a1-94f34a45ccf6-avatto_me167.js

                                      Hab's angepasst für dein ME167 Thermostat.
                                      Probiers mal aus.

                                      Du weißt ja wo die Datei hin muss oder?

                                      P Offline
                                      P Offline
                                      Patrick Kenzler
                                      wrote on last edited by
                                      #63

                                      @diamand2k22 Danke aber leider bekomme ich Fehler ausgeworfen und der Adapter startet nicht mehr. Naja ich packe den Pfad unter Einstellungen der jeweiligen Zigbee Instanz und die Datei in "/opt/iobroker/iobroker-data/zigbee_2"?!

                                      anbei das protokoll

                                      2022-11-22 07:57:47.563 - error: zigbee.2 (22077) Exception-Code: MODULE_NOT_FOUND: Cannot find module '../lib/exposes'
                                      Require stack:
                                      - /opt/iobroker/node_modules/iobroker.zigbee/main.js
                                      2022-11-22 07:57:47.641 - info: zigbee.2 (22077) cleaned everything up...
                                      2022-11-22 07:57:47.645 - info: zigbee.2 (22077) terminating
                                      2022-11-22 07:57:47.648 - warn: zigbee.2 (22077) Terminated (UNCAUGHT_EXCEPTION): Without reason
                                      2022-11-22 07:57:48.285 - error: host.SmartHome Caught by controller[0]: This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
                                      2022-11-22 07:57:48.286 - error: host.SmartHome Caught by controller[1]: node:internal/modules/cjs/loader:936
                                      2022-11-22 07:57:48.287 - error: host.SmartHome Caught by controller[1]: throw err;
                                      2022-11-22 07:57:48.287 - error: host.SmartHome Caught by controller[1]: ^
                                      2022-11-22 07:57:48.287 - error: host.SmartHome Caught by controller[1]: Error: Cannot find module '../lib/exposes'
                                      2022-11-22 07:57:48.288 - error: host.SmartHome Caught by controller[1]: Require stack:
                                      2022-11-22 07:57:48.288 - error: host.SmartHome Caught by controller[1]: - /opt/iobroker/node_modules/iobroker.zigbee/main.js
                                      2022-11-22 07:57:48.289 - error: host.SmartHome Caught by controller[1]: at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
                                      2022-11-22 07:57:48.289 - error: host.SmartHome Caught by controller[1]: at Function.Module._load (node:internal/modules/cjs/loader:778:27)
                                      2022-11-22 07:57:48.289 - error: host.SmartHome Caught by controller[1]: at Module.require (node:internal/modules/cjs/loader:1005:19)
                                      2022-11-22 07:57:48.290 - error: host.SmartHome Caught by controller[1]: at require (node:internal/modules/cjs/helpers:102:18)
                                      2022-11-22 07:57:48.290 - error: host.SmartHome Caught by controller[1]: at evalmachine.:1:17
                                      2022-11-22 07:57:48.290 - error: host.SmartHome Caught by controller[1]: at Script.runInContext (node:vm:139:12)
                                      2022-11-22 07:57:48.291 - error: host.SmartHome Caught by controller[1]: at Script.runInNewContext (node:vm:144:17)
                                      2022-11-22 07:57:48.291 - error: host.SmartHome Caught by controller[1]: at Object.runInNewContext (node:vm:298:38)
                                      2022-11-22 07:57:48.291 - error: host.SmartHome Caught by controller[1]: at Zigbee.getExternalDefinition (/opt/iobroker/node_modules/iobroker.zigbee/main.js:222:16)
                                      2022-11-22 07:57:48.292 - error: host.SmartHome Caught by controller[1]: at getExternalDefinition.next ()
                                      2022-11-22 07:57:48.292 - error: host.SmartHome instance system.adapter.zigbee.2 terminated with code 6 (UNCAUGHT_EXCEPTION)
                                      
                                      D 1 Reply Last reply
                                      0
                                      • P Patrick Kenzler

                                        @diamand2k22 Danke aber leider bekomme ich Fehler ausgeworfen und der Adapter startet nicht mehr. Naja ich packe den Pfad unter Einstellungen der jeweiligen Zigbee Instanz und die Datei in "/opt/iobroker/iobroker-data/zigbee_2"?!

                                        anbei das protokoll

                                        2022-11-22 07:57:47.563 - error: zigbee.2 (22077) Exception-Code: MODULE_NOT_FOUND: Cannot find module '../lib/exposes'
                                        Require stack:
                                        - /opt/iobroker/node_modules/iobroker.zigbee/main.js
                                        2022-11-22 07:57:47.641 - info: zigbee.2 (22077) cleaned everything up...
                                        2022-11-22 07:57:47.645 - info: zigbee.2 (22077) terminating
                                        2022-11-22 07:57:47.648 - warn: zigbee.2 (22077) Terminated (UNCAUGHT_EXCEPTION): Without reason
                                        2022-11-22 07:57:48.285 - error: host.SmartHome Caught by controller[0]: This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
                                        2022-11-22 07:57:48.286 - error: host.SmartHome Caught by controller[1]: node:internal/modules/cjs/loader:936
                                        2022-11-22 07:57:48.287 - error: host.SmartHome Caught by controller[1]: throw err;
                                        2022-11-22 07:57:48.287 - error: host.SmartHome Caught by controller[1]: ^
                                        2022-11-22 07:57:48.287 - error: host.SmartHome Caught by controller[1]: Error: Cannot find module '../lib/exposes'
                                        2022-11-22 07:57:48.288 - error: host.SmartHome Caught by controller[1]: Require stack:
                                        2022-11-22 07:57:48.288 - error: host.SmartHome Caught by controller[1]: - /opt/iobroker/node_modules/iobroker.zigbee/main.js
                                        2022-11-22 07:57:48.289 - error: host.SmartHome Caught by controller[1]: at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
                                        2022-11-22 07:57:48.289 - error: host.SmartHome Caught by controller[1]: at Function.Module._load (node:internal/modules/cjs/loader:778:27)
                                        2022-11-22 07:57:48.289 - error: host.SmartHome Caught by controller[1]: at Module.require (node:internal/modules/cjs/loader:1005:19)
                                        2022-11-22 07:57:48.290 - error: host.SmartHome Caught by controller[1]: at require (node:internal/modules/cjs/helpers:102:18)
                                        2022-11-22 07:57:48.290 - error: host.SmartHome Caught by controller[1]: at evalmachine.:1:17
                                        2022-11-22 07:57:48.290 - error: host.SmartHome Caught by controller[1]: at Script.runInContext (node:vm:139:12)
                                        2022-11-22 07:57:48.291 - error: host.SmartHome Caught by controller[1]: at Script.runInNewContext (node:vm:144:17)
                                        2022-11-22 07:57:48.291 - error: host.SmartHome Caught by controller[1]: at Object.runInNewContext (node:vm:298:38)
                                        2022-11-22 07:57:48.291 - error: host.SmartHome Caught by controller[1]: at Zigbee.getExternalDefinition (/opt/iobroker/node_modules/iobroker.zigbee/main.js:222:16)
                                        2022-11-22 07:57:48.292 - error: host.SmartHome Caught by controller[1]: at getExternalDefinition.next ()
                                        2022-11-22 07:57:48.292 - error: host.SmartHome instance system.adapter.zigbee.2 terminated with code 6 (UNCAUGHT_EXCEPTION)
                                        
                                        D Offline
                                        D Offline
                                        Diamand2k22
                                        wrote on last edited by
                                        #64

                                        @patrick-kenzler

                                        kopiere das file nach

                                        /opt/iobroker/node_modules/zigbee-herdsman-converters/devices/

                                        und mach den Eintrag bei externe Adapter raus.
                                        Dann Zigbee Adapter neu starten.

                                        P 1 Reply Last reply
                                        0
                                        • D Diamand2k22

                                          @patrick-kenzler

                                          kopiere das file nach

                                          /opt/iobroker/node_modules/zigbee-herdsman-converters/devices/

                                          und mach den Eintrag bei externe Adapter raus.
                                          Dann Zigbee Adapter neu starten.

                                          P Offline
                                          P Offline
                                          Patrick Kenzler
                                          wrote on last edited by
                                          #65

                                          @diamand2k22 habs probiert er schmeißt immernoch Fehler :-/ hast du noch eine Idee?

                                          2022-11-22 23:28:11.087	error	instance system.adapter.zigbee.2 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                          2022-11-22 23:28:11.087	error	Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1105:14)
                                          2022-11-22 23:28:11.087	error	Caught by controller[0]: at Object.<anonymous> (/opt/iobroker/node_modules/zigbee-herdsman-converters/index.js:118:30)
                                          2022-11-22 23:28:11.086	error	Caught by controller[0]: at require (node:internal/modules/cjs/helpers:102:18)
                                          2022-11-22 23:28:11.086	error	Caught by controller[0]: at Module.require (node:internal/modules/cjs/loader:1005:19)
                                          2022-11-22 23:28:11.086	error	Caught by controller[0]: at Function.Module._load (node:internal/modules/cjs/loader:822:12)
                                          2022-11-22 23:28:11.085	error	Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:981:32)
                                          2022-11-22 23:28:11.085	error	Caught by controller[0]: at Object.Module._extensions..js (node:internal/modules/cjs/loader:1159:10)
                                          2022-11-22 23:28:11.084	error	Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1069:27)
                                          2022-11-22 23:28:11.084	error	Caught by controller[0]: at wrapSafe (node:internal/modules/cjs/loader:1033:15)
                                          2022-11-22 23:28:11.083	error	Caught by controller[0]: at Object.compileFunction (node:vm:352:18)
                                          2022-11-22 23:28:11.083	error	Caught by controller[0]: SyntaxError: Unexpected identifier
                                          2022-11-22 23:28:11.083	error	Caught by controller[0]: ^^^^^^^^
                                          2022-11-22 23:28:11.083	error	Caught by controller[0]: konstantes Ergebnis = {};
                                          2022-11-22 23:28:11.082	error	Caught by controller[0]: /opt/iobroker/node_modules/zigbee-herdsman-converters/devices/06b9e9de-716c-4a03-95a1-94f34a45ccf6-avatto_me167.js:36
                                          
                                          P 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          585

                                          Online

                                          32.7k

                                          Users

                                          82.5k

                                          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