Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Sinalco

    NEWS

    • ioBroker goes Matter ... Matter Adapter in Stable

    • 15. 05. Wartungsarbeiten am ioBroker Forum

    • Monatsrückblick - April 2025

    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 50
    • Best 1
    • Groups 1

    Sinalco

    @Sinalco

    1
    Reputation
    24
    Profile views
    50
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Sinalco Follow
    Starter

    Best posts made by Sinalco

    • RE: Yahka hue color nach hex convertieren

      Für die, bei denen es noch nicht funktioniert:

      1. Skript:
      Mit diesem Skript regel ich IKEA Tradfri Lampen und Osram LED Strips (Ihr braucht nur ein Skript):
      Bei den Osram Bändern hab ich noch Probleme, wenn man dimmt, kann aber auch am zigbee Adpater liegen. Bei den IKEA Lampen funktioniert es ganz gut.

      ////////////////Variablen/////////////////
      var h, s, v, r, g, b
      
      ////////////////Funktionen////////////////
      //HSVtoRGB
      function HSVtoRGB() {
          var r1, g1, b1, i, f, p, q, t;
          i = Math.floor(h * 6);
          f = h * 6 - i;
          p = v * (1 - s);
          q = v * (1 - f * s);
          t = v * (1 - (1 - f) * s);
          switch (i % 6) {
              case 0: r1 = v, g1 = t, b1 = p; break;
              case 1: r1 = q, g1 = v, b1 = p; break;
              case 2: r1 = p, g1 = v, b1 = t; break;
              case 3: r1 = p, g1 = q, b1 = v; break;
              case 4: r1 = t, g1 = p, b1 = v; break;
              case 5: r1 = v, g1 = p, b1 = q; break;
          }
          r=Math.round(255 * r1);
          g=Math.round(255 * g1);
          b=Math.round(255 * b1);    
      }
      
      //In HEX konvertieren
      function toHex(number) {
          if (number < 0) number = 0xFFFFFFFF + number + 1;
          var n = number.toString(16).toUpperCase();
          if (n.length == 1) {
              n = '0' + n;
          }
          return n;
      }
      
      ///////////////////Variablenzuweisung//////////////////
      // Bei Farbänderung oder Helligkeitsänderung
      on(["javascript.0.scriptEnabled.logic.Licht.HSVtoHEX.TV_Licht_hue","javascript.0.scriptEnabled.logic.Licht.HSVtoHEX.TV_Licht_sat","zigbee.0.7cb03eaa000024ef.brightness"] , function (dp) {
      h = getState("javascript.0.scriptEnabled.logic.Licht.HSVtoHEX.TV_Licht_hue").val / 360;
      s = getState("javascript.0.scriptEnabled.logic.Licht.HSVtoHEX.TV_Licht_sat").val / 255;
      v = getState("zigbee.0.7cb03eaa000024ef.brightness").val / 100;
      HSVtoRGB();
      setState('zigbee.0.7cb03eaa000024ef.color', '#' + toHex(r) + toHex(g) + toHex(b));
      });
      
      on(["javascript.0.scriptEnabled.logic.Licht.HSVtoHEX.TV_Kugel_hue","javascript.0.scriptEnabled.logic.Licht.HSVtoHEX.TV_Kugel_sat","zigbee.0.d0cf5efffe22e689.brightness"] , function (dp) {
      h = getState("javascript.0.scriptEnabled.logic.Licht.HSVtoHEX.TV_Kugel_hue").val / 360;
      s = getState("javascript.0.scriptEnabled.logic.Licht.HSVtoHEX.TV_Kugel_sat").val / 255;
      v = getState("zigbee.0.d0cf5efffe22e689.brightness").val / 100;
      HSVtoRGB();
      setState('zigbee.0.d0cf5efffe22e689.color', '#' + toHex(r) + toHex(g) + toHex(b));
      });
      

      2. Folgende Objekte müssen angelegt sein:
      Unbenannt0.JPG
      (Und zwar so, dass die Objekte Zahlen annehmen können.)

      3. Einstellung in yahka:
      Ganz wichtig bei Saturation muss bei Conversion level255 angegeben werden, ansonsten stimmen die Farben nicht!

      Unbenannt.JPG
      Unbenannt1.JPG

      posted in Skripten / Logik
      S
      Sinalco

    Latest posts made by Sinalco

    • Suche Zigbee Relais Schalter für Deckenleuchte

      Hallo zusammen, ich suche einen Zigbee Relais Schalter mit dem man eine 230V Deckenleuchte ein und ausschalten kann. Der Schalter soll in das Gehäuse der Lampe passen, deshalb nicht zu groß sein, da ich hinter dem Lichtschalter keinen Platz habe.
      Günstiger darf er auch gerne sein ca. bis 25 Euro

      Bei deiner anderen Lampe verwende ich diesen: https://www.zigbee2mqtt.io/devices/HLC821-Z-SC.html
      Diesen gibt es aber nicht mehr zu kaufen und die Dimmfunktion benötige ich für die "neue" Deckenleuchte auch nicht.

      Wichtig ist auch, das wenn man die Lampe mit dem Lichtschalter ausschaltet (dann wird der Schaltaktor stromlos) und dann wieder an macht, das dann die Lampe immer automatisch an geht (das Relais automatisch aktiv geht).

      Das Verhalten ist dann wie bei einer normalen Hue oder Tradfri Birne.

      posted in Hardware
      S
      Sinalco
    • RE: [Aufruf] ZigBee CC253x Adapter Version 0.10.x

      Ich bin heute auf den CC2530 Coordinator mit externer Antenne umgestiegen, weil man damit besseren Empfang hat. Habe alle Geräte neu angelernt und das funktioniert jetzt auch alles ganz gut, allerdings gehen die Gruppen überhaupt nicht mehr. Das ging mit dem CC2531 noch.
      Habe sonst alle Versionen gleich wie davor.
      Hat da jemand eine Idee?

      Folgendes wird beim Versuch den State der Gruppe auf true zu setzen angezeigt.

      zigbee.0	2019-05-30 16:27:31.236	error	Failed to add device 0xd0cf5efffe136567 to group 1. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:27:31.235	error	Zigbee publish to '0xd0cf5efffe136567', genGroups - add - {"groupid":1,"groupname":""} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the
      zigbee.0	2019-05-30 16:27:24.696	error	Failed to add device 0x000b57fffea884b2 to group 2. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:27:24.695	error	Zigbee publish to '0x000b57fffea884b2', genGroups - add - {"groupid":2,"groupname":""} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the
      zigbee.0	2019-05-30 16:27:18.499	error	Failed to add device 0xd0cf5efffe22e689 to group 3. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:27:18.498	error	Zigbee publish to '0xd0cf5efffe22e689', genGroups - add - {"groupid":3,"groupname":""} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the
      zigbee.0	2019-05-30 16:27:11.871	error	Failed to add device 0xd0cf5efffe136567 to group 1. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:27:11.869	error	Zigbee publish to '0xd0cf5efffe136567', genGroups - add - {"groupid":1,"groupname":""} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the
      zigbee.0	2019-05-30 16:27:04.637	error	Failed to revove dev 0x90fd9ffffe11281f from all groups. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:27:04.635	error	Zigbee publish to '0x90fd9ffffe11281f', genGroups - removeAll - {} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joine
      zigbee.0	2019-05-30 16:26:58.436	error	Failed to revove dev 0xd0cf5efffec2d518 from all groups. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:26:58.436	error	Zigbee publish to '0xd0cf5efffec2d518', genGroups - removeAll - {} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joine
      zigbee.0	2019-05-30 16:26:51.856	error	Failed to revove dev 0x90fd9ffffe113253 from all groups. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:26:51.855	error	Zigbee publish to '0x90fd9ffffe113253', genGroups - removeAll - {} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joine
      zigbee.0	2019-05-30 16:26:45.631	error	Failed to revove dev 0x000b57fffea884b2 from all groups. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:26:45.630	error	Zigbee publish to '0x000b57fffea884b2', genGroups - removeAll - {} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joine
      zigbee.0	2019-05-30 16:26:39.446	error	Failed to revove dev 0xd0cf5efffe22e689 from all groups. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:26:39.445	error	Zigbee publish to '0xd0cf5efffe22e689', genGroups - removeAll - {} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joine
      zigbee.0	2019-05-30 16:26:33.397	error	Failed to add device 0x7cb03eaa000024ef to group 3. Error: AF data request fails, status code: 233. MAC no ack.
      zigbee.0	2019-05-30 16:26:33.396	error	Zigbee publish to '0x7cb03eaa000024ef', genGroups - add - {"groupid":3,"groupname":""} - 3 failed with error Error: AF data request fails, status code: 233. MAC no ack.
      zigbee.0	2019-05-30 16:26:33.308	error	Failed to add device 0x7cb03eaa000024ef to group 1. Error: AF data request fails, status code: 233. MAC no ack.
      zigbee.0	2019-05-30 16:26:33.308	error	Zigbee publish to '0x7cb03eaa000024ef', genGroups - add - {"groupid":1,"groupname":""} - 3 failed with error Error: AF data request fails, status code: 233. MAC no ack.
      zigbee.0	2019-05-30 16:26:32.464	error	Failed to add device 0x000b57fffea884b2 to group 2. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:26:32.463	error	Zigbee publish to '0x000b57fffea884b2', genGroups - add - {"groupid":2,"groupname":""} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the
      zigbee.0	2019-05-30 16:26:26.242	error	Failed to add device 0xd0cf5efffec2d518 to group 3. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:26:26.241	error	Zigbee publish to '0xd0cf5efffec2d518', genGroups - add - {"groupid":3,"groupname":""} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the
      zigbee.0	2019-05-30 16:26:18.926	error	Failed to revove dev 0x90fd9ffffe11281f from all groups. Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joined the network.
      zigbee.0	2019-05-30 16:26:18.925	error	Zigbee publish to '0x90fd9ffffe11281f', genGroups - removeAll - {} - 1 failed with error Error: AF data request fails, status code: 205. No network route. Please confirm that the device has (re)joine
      

      Die Lampen einzeln anzusteuern funktioniert super.

      posted in Tester
      S
      Sinalco
    • RE: ZigBee CC253x Adapter - nur neue/unbekannte Geräte Version 0.9.x

      @matdos1gmx-de Bei mir ist das nicht so.
      Der letze Wert wird auch nach dem einschalten wieder hergestellt. Egal ob ich es per iobroker schalte oder Manuel am Lichtschalter.

      posted in Entwicklung
      S
      Sinalco
    • RE: ZigBee CC253x Adapter - nur neue/unbekannte Geräte Version 0.9.x

      @arteck Hab dein Repro (https://github.com/arteck/ioBroker.zigbee/tarball/713) zum Testen gestern Abend installiert, Upload, gemacht und ioBroker neu gestartet.
      Leider lässt sich die Farbtemperatur der IKEA Tradfri Lampe auch mit der Version nicht ändern, der Rest geht.
      Der einzige Unterschied, der mir aufgefallen ist, dass die diese Fehlermeldung nicht mehr kommt:

      No converter available for 'LED1624G9' with cid 'genBasic' and type 'devChange'
      

      Kann ich sonst noch was ausprobieren?

      posted in Entwicklung
      S
      Sinalco
    • RE: Neuer Adapter: Yamaha MusicCast

      @Sinalco sagte in Neuer Adapter: Yamaha MusicCast:

      Ich kann ab Version 0.1.x nicht mehr meine Yamaha YAS-306 Soundbar richtig steuern. Einschalten geht nicht, aber ausschalten funktioniert. Mute schaltet ebenfalls aus... Bin jetzt auf 0.0.9 da funktioniert alles bestens.

      Ich hab jetzt mal 0.1.1 direkt von Github installiert aber das Problem besteht immer noch.

      Hier mal der Log mit Debug Ausgabe:

      musiccast.0	2019-03-08 19:50:16.450	debug	system.adapter.admin.0: logging true
      musiccast.0	2019-03-08 19:50:11.477	debug	sent power succesfully to main with false
      musiccast.0	2019-03-08 19:50:11.458	debug	sent power succesfully to main with false
      musiccast.0	2019-03-08 19:50:11.452	debug	IP configured : 192.168.178.26 for UID 01915823
      musiccast.0	2019-03-08 19:50:11.452	debug	config items : [{"ip":"192.168.178.26","type":"YAS-306","uid":"01915823","name":"Soundbar"}]
      musiccast.0	2019-03-08 19:50:11.451	debug	device with uid = 01915823
      musiccast.0	2019-03-08 19:50:11.451	info	MusicCast: musiccast.0.YAS-306_01915823.main.power identified for command with false
      musiccast.0	2019-03-08 19:50:11.451	debug	stateChange musiccast.0.YAS-306_01915823.main.power {"val":false,"ack":false,"ts":1552071011440,"q":0,"from":"system.adapter.javascript.0","user":"system.user.admin","lc":1552071011427}
      musiccast.0	2019-03-08 19:50:11.438	debug	IP configured : 192.168.178.26 for UID 01915823
      musiccast.0	2019-03-08 19:50:11.437	debug	config items : [{"ip":"192.168.178.26","type":"YAS-306","uid":"01915823","name":"Soundbar"}]
      musiccast.0	2019-03-08 19:50:11.437	debug	device with uid = 01915823
      musiccast.0	2019-03-08 19:50:11.436	info	MusicCast: musiccast.0.YAS-306_01915823.main.power identified for command with false
      musiccast.0	2019-03-08 19:50:11.435	debug	stateChange musiccast.0.YAS-306_01915823.main.power {"val":false,"ack":false,"ts":1552071011427,"q":0,"from":"system.adapter.javascript.0","user":"system.user.admin","lc":1552071011427}
      musiccast.0	2019-03-08 19:50:11.434	debug	stateChange musiccast.0.YAS-306_01915823.main.disable_flags {"val":0,"ack":true,"ts":1552071011402,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108425}
      musiccast.0	2019-03-08 19:50:11.432	debug	stateChange musiccast.0.YAS-306_01915823.main.link_audio_quality {"val":"uncompressed","ack":true,"ts":1552071011401,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":15520531
      musiccast.0	2019-03-08 19:50:11.431	debug	stateChange musiccast.0.YAS-306_01915823.main.link_audio_delay {"val":"audio_sync","ack":true,"ts":1552071011400,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":155205310842
      musiccast.0	2019-03-08 19:50:11.429	debug	stateChange musiccast.0.YAS-306_01915823.main.link_control {"val":"speed","ack":true,"ts":1552071011399,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108423}
      musiccast.0	2019-03-08 19:50:11.427	debug	stateChange musiccast.0.YAS-306_01915823.main.bass_extension {"val":true,"ack":true,"ts":1552071011398,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108422}
      musiccast.0	2019-03-08 19:50:11.426	debug	stateChange musiccast.0.YAS-306_01915823.main.subwoofer_volume {"val":4,"ack":true,"ts":1552071011397,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108422}
      musiccast.0	2019-03-08 19:50:11.424	debug	stateChange musiccast.0.YAS-306_01915823.main.clear_voice {"val":true,"ack":true,"ts":1552071011396,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108421}
      musiccast.0	2019-03-08 19:50:11.423	debug	stateChange musiccast.0.YAS-306_01915823.main.sound_program {"val":"music","ack":true,"ts":1552071011395,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108420}
      musiccast.0	2019-03-08 19:50:11.421	debug	stateChange musiccast.0.YAS-306_01915823.main.distribution_enable {"val":true,"ack":true,"ts":1552071011394,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108419}
      musiccast.0	2019-03-08 19:50:11.420	debug	stateChange musiccast.0.YAS-306_01915823.main.input {"val":"tv","ack":true,"ts":1552071011393,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108419}
      musiccast.0	2019-03-08 19:50:11.418	debug	stateChange musiccast.0.YAS-306_01915823.main.max_volume {"val":100,"ack":true,"ts":1552071011392,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108418}
      musiccast.0	2019-03-08 19:50:11.417	debug	stateChange musiccast.0.YAS-306_01915823.main.mute {"val":false,"ack":true,"ts":1552071011391,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552071011133}
      musiccast.0	2019-03-08 19:50:11.415	debug	stateChange musiccast.0.YAS-306_01915823.main.volume {"val":52,"ack":true,"ts":1552071011390,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108417}
      musiccast.0	2019-03-08 19:50:11.413	debug	stateChange musiccast.0.YAS-306_01915823.main.power {"val":"standby","ack":true,"ts":1552071011389,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552071011389}
      musiccast.0	2019-03-08 19:50:11.409	debug	stateChange musiccast.0.YAS-306_01915823.main.response_code {"val":0,"ack":true,"ts":1552071011385,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108414}
      musiccast.0	2019-03-08 19:50:11.405	debug	stateChange musiccast.0.YAS-306_01915823.main.getStatus {"val":{"response_code":0,"power":"standby","volume":52,"mute":false,"max_volume":100,"input":"tv","distribution_enable":true,"sound_program":"
      musiccast.0	2019-03-08 19:50:11.403	debug	stateChange musiccast.0.YAS-306_01915823.netusb.shuffle_available {"val":["off","on"],"ack":true,"ts":1552071011365,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":155207101
      musiccast.0	2019-03-08 19:50:11.402	debug	stateChange musiccast.0.YAS-306_01915823.netusb.repeat_available {"val":["off","one","all"],"ack":true,"ts":1552071011364,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":155
      musiccast.0	2019-03-08 19:50:11.401	debug	stateChange musiccast.0.YAS-306_01915823.netusb.attribute {"val":16777247,"ack":true,"ts":1552071011363,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552071011363}
      musiccast.0	2019-03-08 19:50:11.400	debug	stateChange musiccast.0.YAS-306_01915823.netusb.auto_stopped {"val":false,"ack":true,"ts":1552071011362,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108441}
      musiccast.0	2019-03-08 19:50:11.398	debug	stateChange musiccast.0.YAS-306_01915823.netusb.usb_devicetype {"val":"unknown","ack":true,"ts":1552071011361,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108441}
      musiccast.0	2019-03-08 19:50:11.397	debug	stateChange musiccast.0.YAS-306_01915823.netusb.albumart_id {"val":8031,"ack":true,"ts":1552071011361,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108440}
      musiccast.0	2019-03-08 19:50:11.396	debug	stateChange musiccast.0.YAS-306_01915823.netusb.albumart_url {"val":"","ack":true,"ts":1552071011360,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108439}
      musiccast.0	2019-03-08 19:50:11.395	debug	stateChange musiccast.0.YAS-306_01915823.netusb.track {"val":"","ack":true,"ts":1552071011359,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108438}
      musiccast.0	2019-03-08 19:50:11.394	debug	stateChange musiccast.0.YAS-306_01915823.netusb.album {"val":"","ack":true,"ts":1552071011359,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108438}
      musiccast.0	2019-03-08 19:50:11.392	debug	stateChange musiccast.0.YAS-306_01915823.netusb.artist {"val":"","ack":true,"ts":1552071011358,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108437}
      musiccast.0	2019-03-08 19:50:11.391	debug	stateChange musiccast.0.YAS-306_01915823.netusb.total_time {"val":0,"ack":true,"ts":1552071011357,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108436}
      musiccast.0	2019-03-08 19:50:11.390	debug	stateChange musiccast.0.YAS-306_01915823.netusb.play_time {"val":-60000,"ack":true,"ts":1552071011356,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108436}
      musiccast.0	2019-03-08 19:50:11.387	debug	stateChange musiccast.0.YAS-306_01915823.netusb.shuffle_stat {"val":"off","ack":true,"ts":1552071011353,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108435}
      musiccast.0	2019-03-08 19:50:11.382	debug	stateChange musiccast.0.YAS-306_01915823.netusb.repeat_stat {"val":"off","ack":true,"ts":1552071011346,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108434}
      musiccast.0	2019-03-08 19:50:11.381	debug	stateChange musiccast.0.YAS-306_01915823.netusb.playback {"val":"stop","ack":true,"ts":1552071011345,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108433}
      musiccast.0	2019-03-08 19:50:11.379	debug	stateChange musiccast.0.YAS-306_01915823.netusb.play_queue_type {"val":"system","ack":true,"ts":1552071011344,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108433}
      musiccast.0	2019-03-08 19:50:11.378	debug	stateChange musiccast.0.YAS-306_01915823.netusb.input {"val":"bluetooth","ack":true,"ts":1552071011341,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552071011341}
      musiccast.0	2019-03-08 19:50:11.376	debug	stateChange musiccast.0.YAS-306_01915823.netusb.response_code {"val":0,"ack":true,"ts":1552071011337,"q":0,"from":"system.adapter.musiccast.0","user":"system.user.admin","lc":1552053108431}
      musiccast.0	2019-03-08 19:50:11.335	debug	Zone Status Update disable_flags at 0
      musiccast.0	2019-03-08 19:50:11.335	debug	Zone Status Update link_audio_quality at uncompressed
      musiccast.0	2019-03-08 19:50:11.335	debug	Zone Status Update link_audio_delay at audio_sync
      musiccast.0	2019-03-08 19:50:11.334	debug	Zone Status Update link_control at speed
      musiccast.0	2019-03-08 19:50:11.334	debug	Zone Status Update bass_extension at true
      musiccast.0	2019-03-08 19:50:11.334	debug	Zone Status Update subwoofer_volume at 4
      musiccast.0	2019-03-08 19:50:11.333	debug	Zone Status Update clear_voice at true
      musiccast.0	2019-03-08 19:50:11.330	debug	Zone Status Update sound_program at music
      musiccast.0	2019-03-08 19:50:11.330	debug	Zone Status Update distribution_enable at true
      musiccast.0	2019-03-08 19:50:11.330	debug	Zone Status Update input at tv
      musiccast.0	2019-03-08 19:50:11.329	debug	Zone Status Update max_volume at 100
      musiccast.0	2019-03-08 19:50:11.329	debug	Zone Status Update mute at false
      musiccast.0	2019-03-08 19:50:11.329	debug	Zone Status Update volume at 52
      musiccast.0	2019-03-08 19:50:11.328	debug	Zone Status Update power at standby
      musiccast.0	2019-03-08 19:50:11.328	debug	Zone Status Update response_code at 0
      musiccast.0	2019-03-08 19:50:11.327	debug	got status info succesfully from 192.168.178.26 for main
      musiccast.0	2019-03-08 19:50:11.327	debug	stateChange musiccast.0.YAS-306_01915823netusb.getPlayInfo {"val":{"response_code":0,"input":"bluetooth","play_queue_type":"system","playback":"stop","repeat":"off","shuffle":"off","play_time":-60000
      musiccast.0	2019-03-08 19:50:11.324	debug	albumart
      musiccast.0	2019-03-08 19:50:11.318	debug	got Netusb playinfo succesfully from 192.168.178.26with "{\"response_code\":0,\"input\":\"bluetooth\",\"play_queue_type\":\"system\",\"playback\":\"stop\",\"repeat\":\"off\",\"shuffle\":\"off\",\"pl
      musiccast.0	2019-03-08 19:50:11.305	debug	processing update from: [object Object] with {"main":{"signal_info_updated":true},"netusb":{"play_info_updated":true,"play_queue":{"updated":true}},"device_id":"00A0DEFEA471"}
      musiccast.0	2019-03-08 19:50:11.304	debug	server got:{"main":{"signal_info_updated":true},"netusb":{"play_info_updated":true,"play_queue":{"updated":true}},"device_id":"00A0DEFEA471"} from 192.168.178.26
      musiccast.0	2019-03-08 19:50:11.206	debug	sent power succesfully to main with false
      musiccast.0	2019-03-08 19:50:11.190	debug	sent power succesfully to main with false
      musiccast.0	2019-03-08 19:50:11.186	debug	IP configured : 192.168.178.26 for UID 01915823
      musiccast.0	2019-03-08 19:50:11.186	debug	config items : [{"ip":"192.168.178.26","type":"YAS-306","uid":"01915823","name":"Soundbar"}]
      musiccast.0	2019-03-08 19:50:11.185	debug	device with uid = 01915823
      musiccast.0	2019-03-08 19:50:11.185	info	MusicCast: musiccast.0.YAS-306_01915823.main.power identified for command with false
      musiccast.0	2019-03-08 19:50:11.183	debug	stateChange musiccast.0.YAS-306_01915823.main.power {"val":false,"ack":false,"ts":1552071011176,"q":0,"from":"system.adapter.javascript.0","user":"system.user.admin","lc":1552071011163}
      musiccast.0	2019-03-08 19:50:11.172	debug	IP configured : 192.168.178.26 for UID 01915823
      musiccast.0	2019-03-08 19:50:11.172	debug	config items : [{"ip":"192.168.178.26","type":"YAS-306","uid":"01915823","name":"Soundbar"}]
      musiccast.0	2019-03-08 19:50:11.171	debug	device with uid = 01915823
      musiccast.0	2019-03-08 19:50:11.171	info	MusicCast: musiccast.0.YAS-306_01915823.main.power identified for command with false
      
      posted in ioBroker Allgemein
      S
      Sinalco
    • RE: [Aufruf] ZigBee CC253x Adapter 0.9

      @Saiz Du musst dann manuell eine Instanz anlegen:
      Unbenannt2.PNG

      posted in Tester
      S
      Sinalco
    • RE: ZigBee CC253x Adapter - nur neue/unbekannte Geräte Version 0.9.x

      Ich habe mit der 0.9.2 immer noch das Problem, dass bei farbigen TRADFRI Lampen keine Color Temparatur funktioniert:

      Unbenannt.PNG

      Folgender Fehler wir darauf im log angezeigt:

      zigbee.0	2019-03-07 12:24:27.472	error	No converter available for 'LED1624G9' with cid 'genBasic' and type 'devChange'
      

      Auf Github ist es wohl auch schon bekannt.
      https://github.com/ioBroker/ioBroker.zigbee/issues/182

      PS: Mit einer alten Version hat es schon mal funktioniert, allerdings hat da die RGB Farbe nicht funktioniert.

      denzel1994 created this issue in ioBroker/ioBroker.zigbee

      closed TRADFRI LED1624G9 - ColorTemp not working #182

      posted in Entwicklung
      S
      Sinalco
    • RE: [Aufruf] ZigBee CC253x Adapter 0.9

      Ich habe die die Zigbee Version: 0.9.2 (Repro von arteck) am laufen ohne irgendwelche manuellen Versionsänderungen am Shepherd-Converter und mit der neusten CC2531 Firmware: 20190223.
      Vielleicht hilft dies den Entwicklern für die nächste Zigbee Version oder einigen Usern hier.

      Zur Info: Mit der Offiziellen 0.9.2 hat es bei mir nicht funktioniert (dort gehen die Lampen immer nur aus).

      Folgendermaßen bin ich vorgegangen:

      1. Deinstallation des Zigbee Adpaters

      2. Folgende Verzeichnisse löschen (oder alles was nach der Deinstallation noch von Zigbee übrig bleibt):
        /opt/iobroker/iobroker-data/zigbee_0
        /opt/iobroker/node_modules/zigbee-shepherd
        /opt/iobroker/node_modules/zigbee-shepherd-converters

      3. Reboot des Raspberry Pis

      4. Installation des Zigbee Adapers über den Gitgub Link von artecks Repro:
        https://github.com/arteck/ioBroker.zigbee

      5. Upload machen

      6. Einrichten des Adapers

      Bei mir musste ich die Lampen nur einmal ein und aus schalten, damit die dann angezeigt werden.
      Xiaomi Sensoren mussten neu angelernt werden.

      posted in Tester
      S
      Sinalco
    • RE: [Aufruf] ZigBee CC253x Adapter 0.9

      Einfach vorübergehend auf Version 0.8.0 zurückgehen.
      Dazu auf Adapter -> Expertenmodus einschalten und dann bei dem Zigbee Version 0.8.0 installieren, dann geht es zumindest vorerst.

      posted in Tester
      S
      Sinalco
    • RE: [Aufruf] ZigBee CC253x Adapter 0.9

      Hab heute die 20190223 aufgespielt und da verhält es sich auch so dass die Lampen nur ausgehen. Hab auch alles mal resetet und alles neu gepairt.

      posted in Tester
      S
      Sinalco
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo