Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Skripten / Logik
    4. Blockly
    5. [x,y] Farbwerte setzen

    NEWS

    • Wir empfehlen: Node.js 22.x

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker goes Matter ... Matter Adapter in Stable

    [x,y] Farbwerte setzen

    This topic has been deleted. Only users with topic management privileges can see it.
    • M
      Mercyful 0 last edited by

      Hallo liebe Gemeinde!
      Bevor ich jetzt in die Tischkante beiße, frag ich hier mal ob jemand eine Idee hat.
      Ich habe hier einen RGBW LED Stripe an einen FLS-PP von Dresden Elektronic an einen ConBee 2 mit einem PI und ioBroker am laufen. Soweit so gut.
      Nun möchte ich eine Sonnenaufgangsszene erstellen die morgens die LED Kette langsam heller werden lässt und dabei den Farbton von dunkel rot auf Sonnengelb ändert.
      Dafür habe ich ein Blockly erstellt und bin hier am verzweifeln. Die Farbe wird über diesen Datenpunkt geändert:


      Farbobjekt.jpg

      Ich habe im Blockly zwei Variablen angelegt (V_Farbton_X und V_Farbton_Y) welche mit Werten initialisiert werden und dann über eine Schleife langsam hoch bzw. herunter gezählt werden.
      Die Helligkeit funktioniert, nur wenn ich die neuen Werte in die Variablen V_Farbton_X und V_Farbton_Y schreiben will, kommen Fehlermeldungen.

      warn (959) You are assigning a string to the state "deconz.0.Lights.9.xy" which expects a array. Please fix your code to use a array or change the state type to string.

      Wie kann ich ein Array in Blockly erstellen und dann in das Objekt für die Farben schreiben?
      Ich habe es mit "Liste aus Text", mit zusammesetzten Texten usw. probiert, ich bekomme es einfach nicht hin.
      Hat jemand einen Tipp für mich?
      Hier das Script

      var Timesteps, V_Helligkeit_in__25, V_Farbton_X, V_Farbton_Y, Intervall, V_Farbwert_X_Y;
      
      
      on({id: "javascript.0.variables.b_Sonnenaufgang"/*b_Sonnenaufgang*/, change: "ne"}, async function (obj) {
        var value = obj.state.val;
        var oldValue = obj.oldState.val;
        Timesteps = 0;
        V_Helligkeit_in__25 = parseFloat(0);
        V_Farbton_X = parseFloat(0.7346);
        V_Farbton_Y = parseFloat(0.265);
        console.log('Jetzt geht es los mit dem Sonnenaufgang!!!  ');
        Intervall = setInterval(async function () {
          console.log('Zeige die Variablen ob diese richtig sind: ');
          console.log(('Variable Helligkeit in %: ' + String(V_Helligkeit_in__25)));
          console.log(('Variable Farbton X: ' + String(V_Farbton_X)));
          console.log(('Variable Farbton Y: ' + String(V_Farbton_Y)));
          console.log(('Objekt Helligkeit in %: ' + String(getState("deconz.0.Lights.9.level").val)));
          console.log('Setze die Helligkeit  anhand der Variable! ');
          setState("deconz.0.Lights.9.level"/*Schlafzimmer RGB level*/, V_Helligkeit_in__25);
          console.log(('Objekt Helligkeit in %: ' + String(getState("deconz.0.Lights.9.level").val)));
          console.log(('Variable Helligkeit in %: ' + String(V_Helligkeit_in__25)));
          console.log(('Variable Farbton X: ' + String(V_Farbton_X)));
          console.log(('Variable Farbton Y: ' + String(V_Farbton_Y)));
          V_Farbwert_X_Y = ['[',parseFloat(V_Farbton_X),',',parseFloat(V_Farbton_Y),']'].join('');
          console.log(('Variable Farbton X/Y ist: ' + String(V_Farbwert_X_Y)));
          setState("deconz.0.Lights.9.xy"/*Schlafzimmer RGB xy*/, V_Farbwert_X_Y);
          console.log(('Farbton X/Y: ' + String(getState("deconz.0.Lights.9.xy").val)));
          console.log(('Eine Liste erstellen: ' + String(V_Farbwert_X_Y.split(','))));
          Timesteps = parseFloat(Timesteps) + 1;
          V_Helligkeit_in__25 = parseFloat(V_Helligkeit_in__25) + 1;
          V_Farbton_X = parseFloat(V_Farbton_X) - parseFloat(0.002);
          V_Farbton_Y = parseFloat(V_Farbton_Y) + parseFloat(0.002);
          if (V_Helligkeit_in__25 == 100) {
            (function () {if (Intervall) {clearInterval(Intervall); Intervall = null;}})();
          }
        }, 5000);
      });
      

      Danke für eure Ideen und Hilfe!
      Schöne Grüße
      Mercy

      paul53 1 Reply Last reply Reply Quote 0
      • paul53
        paul53 @Mercyful 0 last edited by paul53

        @mercyful-0 sagte: You are assigning a string to the state "deconz.0.Lights.9.xy" which expects a array.

        Ändere Zeile 24 in:

            V_Farbwert_X_Y = [V_Farbton_X, V_Farbton_Y];
        

        Bild_2021-12-17_192549.png

        Die vielen parseFloat() kann man weglassen.
        Zeilen 20, 27 liefern den Vorgängerwert, da setState() asynchron arbeitet.

        M 1 Reply Last reply Reply Quote 0
        • M
          Mercyful 0 @paul53 last edited by

          @paul53
          Vielen Dank für die Info!
          Ich habe mein Script geändert

          <xml xmlns="https://developers.google.com/blockly/xml">
            <variables>
              <variable id="8j[oYyFK?1|(#@hg@t3N">Timesteps</variable>
              <variable id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</variable>
              <variable id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</variable>
              <variable id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</variable>
              <variable type="interval" id="Intervall">Intervall</variable>
              <variable id="cQXpIFX1XTNiV$VQut6W">V_Farbwert_X/Y</variable>
            </variables>
            <block type="on" id="wafVglRXOAVv!O@OpR#M" x="-502" y="-19">
              <field name="OID">javascript.0.variables.b_Sonnenaufgang</field>
              <field name="CONDITION">ne</field>
              <field name="ACK_CONDITION"></field>
              <statement name="STATEMENT">
                <block type="variables_set" id="e[93IizETq/C-,ZmBT23">
                  <field name="VAR" id="8j[oYyFK?1|(#@hg@t3N">Timesteps</field>
                  <value name="VALUE">
                    <block type="math_number" id="fTl-qKxNI3qu9P/phHKj">
                      <field name="NUM">0</field>
                    </block>
                  </value>
                  <next>
                    <block type="variables_set" id="rH;[B:a_G6lsC6V:)6%q">
                      <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                      <value name="VALUE">
                        <block type="convert_tonumber" id="`hYvt;~h/VOrs2%68ES|">
                          <value name="VALUE">
                            <block type="math_number" id="]-YS,Vt6}NL=T!9t/3=y">
                              <field name="NUM">0</field>
                            </block>
                          </value>
                        </block>
                      </value>
                      <next>
                        <block type="variables_set" id="^2e~@]XE*k;2}Nud6M2M">
                          <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                          <value name="VALUE">
                            <block type="convert_tonumber" id="0ZyY3b7n2O$tDjiOPZ`V">
                              <value name="VALUE">
                                <block type="math_number" id="@z:LeKgx{$H_2Yd9AZ)^">
                                  <field name="NUM">0.7346</field>
                                </block>
                              </value>
                            </block>
                          </value>
                          <next>
                            <block type="variables_set" id="gPFus8t7~XT9+YjHROoW">
                              <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                              <value name="VALUE">
                                <block type="convert_tonumber" id="c1boS2?nb:wHRA;k^Rwu">
                                  <value name="VALUE">
                                    <block type="math_number" id="MZglVx^cfeAtPaJ}(Z~0">
                                      <field name="NUM">0.265</field>
                                    </block>
                                  </value>
                                </block>
                              </value>
                              <next>
                                <block type="debug" id="6$8!T~et}IfvX4V3r3+H">
                                  <field name="Severity">log</field>
                                  <value name="TEXT">
                                    <shadow type="text" id="@Dmt*a[;F-Gp^d3mq^T;">
                                      <field name="TEXT">1.) Jetzt geht es los mit dem Sonnenaufgang!!!  </field>
                                    </shadow>
                                  </value>
                                  <next>
                                    <block type="timeouts_setinterval" id="{GCSVyUydL]+Q~Ru,fQE">
                                      <field name="NAME">Intervall</field>
                                      <field name="INTERVAL">5</field>
                                      <field name="UNIT">sec</field>
                                      <statement name="STATEMENT">
                                        <block type="debug" id="I~-I0Z~L@)`!I@i[i$*+">
                                          <field name="Severity">log</field>
                                          <value name="TEXT">
                                            <shadow type="text" id="@-!h*qW..wa,wHL}PZKI">
                                              <field name="TEXT">2.) Zeige die Variablen ob diese richtig sind: </field>
                                            </shadow>
                                          </value>
                                          <next>
                                            <block type="debug" id="fP,/ZvTV%54er@,5-+$q">
                                              <field name="Severity">log</field>
                                              <value name="TEXT">
                                                <shadow type="text">
                                                  <field name="TEXT">Helligkeit in %: </field>
                                                </shadow>
                                                <block type="text_join" id="L$G6zX`1u(-*n_m5bjC0">
                                                  <mutation items="2"></mutation>
                                                  <value name="ADD0">
                                                    <block type="text" id="_6c7S7wL.I]y^WfTaXFC">
                                                      <field name="TEXT">3.) Variable Helligkeit in %: </field>
                                                    </block>
                                                  </value>
                                                  <value name="ADD1">
                                                    <block type="variables_get" id="XIEw@%H%(sA0,4N`4O17">
                                                      <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                    </block>
                                                  </value>
                                                </block>
                                              </value>
                                              <next>
                                                <block type="debug" id="D^Va%bx/I`co2/IMQErk">
                                                  <field name="Severity">log</field>
                                                  <value name="TEXT">
                                                    <shadow type="text">
                                                      <field name="TEXT">Helligkeit in %: </field>
                                                    </shadow>
                                                    <block type="text_join" id="OBR,bkXOv/1qHy+_UI]@">
                                                      <mutation items="2"></mutation>
                                                      <value name="ADD0">
                                                        <block type="text" id="yHz}C-w!8$_X2!FqLyrl">
                                                          <field name="TEXT">4.) Variable Farbton X: </field>
                                                        </block>
                                                      </value>
                                                      <value name="ADD1">
                                                        <block type="variables_get" id="A41u+D:EPS)#M_)2{xT5">
                                                          <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                                                        </block>
                                                      </value>
                                                    </block>
                                                  </value>
                                                  <next>
                                                    <block type="debug" id="U.WEd.c.D8[*H)^;SQMv">
                                                      <field name="Severity">log</field>
                                                      <value name="TEXT">
                                                        <shadow type="text">
                                                          <field name="TEXT">Helligkeit in %: </field>
                                                        </shadow>
                                                        <block type="text_join" id="g54|FIkBfM#fCd=zXc50">
                                                          <mutation items="2"></mutation>
                                                          <value name="ADD0">
                                                            <block type="text" id="w=Imp91h*T_#i@gw.BZt">
                                                              <field name="TEXT">5.) Variable Farbton Y: </field>
                                                            </block>
                                                          </value>
                                                          <value name="ADD1">
                                                            <block type="variables_get" id="^3;2+]lbv?}#dgo^k..[">
                                                              <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                                                            </block>
                                                          </value>
                                                        </block>
                                                      </value>
                                                      <next>
                                                        <block type="debug" id="yZLZVGg9wuSr~QD/]~u!">
                                                          <field name="Severity">log</field>
                                                          <value name="TEXT">
                                                            <shadow type="text">
                                                              <field name="TEXT">Helligkeit in %: </field>
                                                            </shadow>
                                                            <block type="text_join" id="w:);`_:qfJ5%^C5(-t+h">
                                                              <mutation items="2"></mutation>
                                                              <value name="ADD0">
                                                                <block type="text" id=",k1HT/i@t-SKFUiZs!-K">
                                                                  <field name="TEXT">6.) Objekt Helligkeit in %: </field>
                                                                </block>
                                                              </value>
                                                              <value name="ADD1">
                                                                <block type="get_value" id="v,F3CEUmO1r*To|Xf}!*">
                                                                  <field name="ATTR">val</field>
                                                                  <field name="OID">deconz.0.Lights.9.level</field>
                                                                </block>
                                                              </value>
                                                            </block>
                                                          </value>
                                                          <next>
                                                            <block type="debug" id="e[4~sspO,KMjPnn.}70k">
                                                              <field name="Severity">log</field>
                                                              <value name="TEXT">
                                                                <shadow type="text" id="U}KGRNI@8MR9QQG2Od#)">
                                                                  <field name="TEXT">7.) Setze die Helligkeit  anhand der Variable! </field>
                                                                </shadow>
                                                              </value>
                                                              <next>
                                                                <block type="control" id="8}=Vf5GHgcr$D~n?VEc4">
                                                                  <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                                                                  <field name="OID">deconz.0.Lights.9.level</field>
                                                                  <field name="WITH_DELAY">FALSE</field>
                                                                  <value name="VALUE">
                                                                    <block type="variables_get" id="}L4j{,wQ-Glxd/MiEk#x">
                                                                      <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                                    </block>
                                                                  </value>
                                                                  <next>
                                                                    <block type="debug" id="c%],ZmJRE3UT%33zGi_7">
                                                                      <field name="Severity">log</field>
                                                                      <value name="TEXT">
                                                                        <shadow type="text">
                                                                          <field name="TEXT">Helligkeit in %: </field>
                                                                        </shadow>
                                                                        <block type="text_join" id="K./U:`m%msm.UkGE#/HE">
                                                                          <mutation items="2"></mutation>
                                                                          <value name="ADD0">
                                                                            <block type="text" id="R{:`K?}8]lC]gvf{g:Yj">
                                                                              <field name="TEXT">8.) Objekt Helligkeit in %: </field>
                                                                            </block>
                                                                          </value>
                                                                          <value name="ADD1">
                                                                            <block type="get_value" id="tCxKIJ1v[~#MR/Q8p#3;">
                                                                              <field name="ATTR">val</field>
                                                                              <field name="OID">deconz.0.Lights.9.level</field>
                                                                            </block>
                                                                          </value>
                                                                        </block>
                                                                      </value>
                                                                      <next>
                                                                        <block type="debug" id="iP)eF[wJ5=;Jse^Un|g`">
                                                                          <field name="Severity">log</field>
                                                                          <value name="TEXT">
                                                                            <shadow type="text" id=")jXakwj.vyu;X/;T+;ep">
                                                                              <field name="TEXT">Helligkeit in %: </field>
                                                                            </shadow>
                                                                            <block type="text_join" id="Gs*z:[W.Ht[{hu-Ypcu]">
                                                                              <mutation items="2"></mutation>
                                                                              <value name="ADD0">
                                                                                <block type="text" id="Jhe%O]~^Z^},`aK/(ly/">
                                                                                  <field name="TEXT">9.) Variable Helligkeit in %: </field>
                                                                                </block>
                                                                              </value>
                                                                              <value name="ADD1">
                                                                                <block type="variables_get" id="jEOWxy?m:GoM}Wqpa$jd">
                                                                                  <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                                                </block>
                                                                              </value>
                                                                            </block>
                                                                          </value>
                                                                          <next>
                                                                            <block type="debug" id="nA@@Z^^uPt5(ps64XPk^">
                                                                              <field name="Severity">log</field>
                                                                              <value name="TEXT">
                                                                                <shadow type="text">
                                                                                  <field name="TEXT">Helligkeit in %: </field>
                                                                                </shadow>
                                                                                <block type="text_join" id="|{;6en.fwP6N(_-YS6|p">
                                                                                  <mutation items="2"></mutation>
                                                                                  <value name="ADD0">
                                                                                    <block type="text" id="#R/gzHz:K9D|6)fX~Lhm">
                                                                                      <field name="TEXT">10.) Variable Farbton X: </field>
                                                                                    </block>
                                                                                  </value>
                                                                                  <value name="ADD1">
                                                                                    <block type="variables_get" id="$rPRa2I#U}JWm,=,@0V6">
                                                                                      <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                                                                                    </block>
                                                                                  </value>
                                                                                </block>
                                                                              </value>
                                                                              <next>
                                                                                <block type="debug" id="BAA+Q)ytBtD/8=DUOm0,">
                                                                                  <field name="Severity">log</field>
                                                                                  <value name="TEXT">
                                                                                    <shadow type="text" id="K~TDj(!|z(N2akG$VrHe">
                                                                                      <field name="TEXT">Helligkeit in %: </field>
                                                                                    </shadow>
                                                                                    <block type="text_join" id="B~N[lU@aQ-+-.C#C({NE">
                                                                                      <mutation items="2"></mutation>
                                                                                      <value name="ADD0">
                                                                                        <block type="text" id=")5Vcn5nIZ`F*/eY#hKi{">
                                                                                          <field name="TEXT">Variable Farbton Y: </field>
                                                                                        </block>
                                                                                      </value>
                                                                                      <value name="ADD1">
                                                                                        <block type="variables_get" id="0uj+Wm5!*!fpT|!^7mob">
                                                                                          <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                                                                                        </block>
                                                                                      </value>
                                                                                    </block>
                                                                                  </value>
                                                                                  <next>
                                                                                    <block type="variables_set" id="pZrX(^|l}i}zZ9y[;pn;">
                                                                                      <field name="VAR" id="cQXpIFX1XTNiV$VQut6W">V_Farbwert_X/Y</field>
                                                                                      <value name="VALUE">
                                                                                        <block type="lists_create_with" id="F]3#H[o{YXtHE+;IS-8j">
                                                                                          <mutation items="2"></mutation>
                                                                                          <value name="ADD0">
                                                                                            <block type="variables_get" id="Eq9V?UfJG%)DkZfN~N-3">
                                                                                              <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                                                                                            </block>
                                                                                          </value>
                                                                                          <value name="ADD1">
                                                                                            <block type="variables_get" id="/cW6-zgv$4_Te#1QSR.w">
                                                                                              <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                                                                                            </block>
                                                                                          </value>
                                                                                        </block>
                                                                                      </value>
                                                                                      <next>
                                                                                        <block type="debug" id="c$R%e?kL7:VXstwCy{Zg">
                                                                                          <field name="Severity">log</field>
                                                                                          <value name="TEXT">
                                                                                            <shadow type="text" id="k3L#mNwZ(g/,mxf`U:w:">
                                                                                              <field name="TEXT">test</field>
                                                                                            </shadow>
                                                                                            <block type="text_join" id="e9R/i1M+[2]XVXt.k]O`">
                                                                                              <mutation items="2"></mutation>
                                                                                              <value name="ADD0">
                                                                                                <block type="text" id="f0NCQJu!h;xQ93K,*2cP">
                                                                                                  <field name="TEXT">11.) JSON Object Farbton X/Y ist: </field>
                                                                                                </block>
                                                                                              </value>
                                                                                              <value name="ADD1">
                                                                                                <block type="convert_object2json" id="ffGqjKb[3X,Q(`a?0vxD">
                                                                                                  <field name="PRETTIFY">FALSE</field>
                                                                                                  <value name="VALUE">
                                                                                                    <block type="variables_get" id="wvE!#kLLp$=z*mn17Il2">
                                                                                                      <field name="VAR" id="cQXpIFX1XTNiV$VQut6W">V_Farbwert_X/Y</field>
                                                                                                    </block>
                                                                                                  </value>
                                                                                                </block>
                                                                                              </value>
                                                                                            </block>
                                                                                          </value>
                                                                                          <next>
                                                                                            <block type="control" id="GdBaux25iO`5_Q{7FOz.">
                                                                                              <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                                                                                              <field name="OID">deconz.0.Lights.9.xy</field>
                                                                                              <field name="WITH_DELAY">FALSE</field>
                                                                                              <value name="VALUE">
                                                                                                <block type="convert_object2json" id="ik3osXCP.-)WysMBSg+,">
                                                                                                  <field name="PRETTIFY">FALSE</field>
                                                                                                  <value name="VALUE">
                                                                                                    <block type="variables_get" id="g_b*?w1~bS~l|*B:i}GA">
                                                                                                      <field name="VAR" id="cQXpIFX1XTNiV$VQut6W">V_Farbwert_X/Y</field>
                                                                                                    </block>
                                                                                                  </value>
                                                                                                </block>
                                                                                              </value>
                                                                                              <next>
                                                                                                <block type="debug" id="d-CpD}ve]qSYr^7ivI`3">
                                                                                                  <field name="Severity">log</field>
                                                                                                  <value name="TEXT">
                                                                                                    <shadow type="text">
                                                                                                      <field name="TEXT">Helligkeit in %: </field>
                                                                                                    </shadow>
                                                                                                    <block type="text_join" id="9/ont1XG/dP$JJ!r7Ch@">
                                                                                                      <mutation items="2"></mutation>
                                                                                                      <value name="ADD0">
                                                                                                        <block type="text" id="/0CGuBb+pPV0M[Z9=L).">
                                                                                                          <field name="TEXT">12.) Farbton X/Y: </field>
                                                                                                        </block>
                                                                                                      </value>
                                                                                                      <value name="ADD1">
                                                                                                        <block type="get_value" id="/srb@4]K}sO9@QzOyeT)">
                                                                                                          <field name="ATTR">val</field>
                                                                                                          <field name="OID">deconz.0.Lights.9.xy</field>
                                                                                                        </block>
                                                                                                      </value>
                                                                                                    </block>
                                                                                                  </value>
                                                                                                  <next>
                                                                                                    <block type="debug" id="j7faUdC?JKr!$]9h-7OH">
                                                                                                      <field name="Severity">log</field>
                                                                                                      <value name="TEXT">
                                                                                                        <shadow type="text" id="T}Es}XoT%BIsePGB-.L6">
                                                                                                          <field name="TEXT">test</field>
                                                                                                        </shadow>
                                                                                                        <block type="text_join" id="=9*EEhS;1M*Kk80:HUaA">
                                                                                                          <mutation items="2"></mutation>
                                                                                                          <value name="ADD0">
                                                                                                            <block type="text" id="5(gZHPY`}P/ZVF,cJE`F">
                                                                                                              <field name="TEXT">13.) Eine Liste erstellen: </field>
                                                                                                            </block>
                                                                                                          </value>
                                                                                                          <value name="ADD1">
                                                                                                            <block type="lists_split" id="=%(Q2|oWx_I/.{Oy^}O9">
                                                                                                              <mutation mode="SPLIT"></mutation>
                                                                                                              <field name="MODE">SPLIT</field>
                                                                                                              <value name="INPUT">
                                                                                                                <block type="variables_get" id="bXM)LmZGu_mN{n4DpICh">
                                                                                                                  <field name="VAR" id="cQXpIFX1XTNiV$VQut6W">V_Farbwert_X/Y</field>
                                                                                                                </block>
                                                                                                              </value>
                                                                                                              <value name="DELIM">
                                                                                                                <shadow type="text" id="gZX+U~ujQ6g,u%)]!sx.">
                                                                                                                  <field name="TEXT">,</field>
                                                                                                                </shadow>
                                                                                                              </value>
                                                                                                            </block>
                                                                                                          </value>
                                                                                                        </block>
                                                                                                      </value>
                                                                                                      <next>
                                                                                                        <block type="variables_set" id="mPu[.Y5:FykS%nc9C}`Q">
                                                                                                          <field name="VAR" id="8j[oYyFK?1|(#@hg@t3N">Timesteps</field>
                                                                                                          <value name="VALUE">
                                                                                                            <block type="math_arithmetic" id="J7WNq//qSRi8]}{vAJJN">
                                                                                                              <field name="OP">ADD</field>
                                                                                                              <value name="A">
                                                                                                                <shadow type="math_number" id="kV#h=B;jc9!~``Qff)~d">
                                                                                                                  <field name="NUM">1</field>
                                                                                                                </shadow>
                                                                                                                <block type="variables_get" id="7=32hia72=+s@fn9eYGk">
                                                                                                                  <field name="VAR" id="8j[oYyFK?1|(#@hg@t3N">Timesteps</field>
                                                                                                                </block>
                                                                                                              </value>
                                                                                                              <value name="B">
                                                                                                                <shadow type="math_number" id=".Q!imRaj~uK$j2uISLgv">
                                                                                                                  <field name="NUM">1</field>
                                                                                                                </shadow>
                                                                                                                <block type="math_number" id="y;:h@21IH;tbaXd/0Jak">
                                                                                                                  <field name="NUM">1</field>
                                                                                                                </block>
                                                                                                              </value>
                                                                                                            </block>
                                                                                                          </value>
                                                                                                          <next>
                                                                                                            <block type="variables_set" id="YB{gD14o*9Ew%XLJmjrh">
                                                                                                              <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                                                                              <value name="VALUE">
                                                                                                                <block type="math_arithmetic" id="l9qu72_6hWPZ;|oLM-8d">
                                                                                                                  <field name="OP">ADD</field>
                                                                                                                  <value name="A">
                                                                                                                    <shadow type="math_number">
                                                                                                                      <field name="NUM">1</field>
                                                                                                                    </shadow>
                                                                                                                    <block type="variables_get" id="ow+};G_t0@,#r=hNS=n/">
                                                                                                                      <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                                                                                    </block>
                                                                                                                  </value>
                                                                                                                  <value name="B">
                                                                                                                    <shadow type="math_number" id="Rr=47jg~r5$?bajtiWAc">
                                                                                                                      <field name="NUM">1</field>
                                                                                                                    </shadow>
                                                                                                                    <block type="math_number" id="i7qFZr:]+j+oua#|r%11">
                                                                                                                      <field name="NUM">1</field>
                                                                                                                    </block>
                                                                                                                  </value>
                                                                                                                </block>
                                                                                                              </value>
                                                                                                              <next>
                                                                                                                <block type="variables_set" id="n#fL$JH#?d6HVl+qf-V1">
                                                                                                                  <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                                                                                                                  <value name="VALUE">
                                                                                                                    <block type="math_arithmetic" id="Y?eo)4Xji=RYGB4*e?u5">
                                                                                                                      <field name="OP">MINUS</field>
                                                                                                                      <value name="A">
                                                                                                                        <shadow type="math_number" id="A[t0Qn#MLuM|fl2YgQ7|">
                                                                                                                          <field name="NUM">1</field>
                                                                                                                        </shadow>
                                                                                                                        <block type="variables_get" id="B{k^LIi$_4HkIQFpgC7c">
                                                                                                                          <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                                                                                                                        </block>
                                                                                                                      </value>
                                                                                                                      <value name="B">
                                                                                                                        <shadow type="math_number" id="vW~yOkx8zvig(@*e)!{I">
                                                                                                                          <field name="NUM">1</field>
                                                                                                                        </shadow>
                                                                                                                        <block type="convert_tonumber" id="_l7VVz^]~Up3a=]ugx+k">
                                                                                                                          <value name="VALUE">
                                                                                                                            <block type="math_number" id="%,,-.QKS/(2skPu(Sa)b">
                                                                                                                              <field name="NUM">0.002</field>
                                                                                                                            </block>
                                                                                                                          </value>
                                                                                                                        </block>
                                                                                                                      </value>
                                                                                                                    </block>
                                                                                                                  </value>
                                                                                                                  <next>
                                                                                                                    <block type="variables_set" id="T,9bz3kD9]V:Ps85@CLo">
                                                                                                                      <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                                                                                                                      <value name="VALUE">
                                                                                                                        <block type="math_arithmetic" id="?1qLRdK(-~lNbZ4xkwkB">
                                                                                                                          <field name="OP">ADD</field>
                                                                                                                          <value name="A">
                                                                                                                            <shadow type="math_number">
                                                                                                                              <field name="NUM">1</field>
                                                                                                                            </shadow>
                                                                                                                            <block type="variables_get" id="lN6g*r)=G2i=t@Uridhu">
                                                                                                                              <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                                                                                                                            </block>
                                                                                                                          </value>
                                                                                                                          <value name="B">
                                                                                                                            <shadow type="math_number" id="?x5c^=/Bi-G^%U|KC]%i">
                                                                                                                              <field name="NUM">1</field>
                                                                                                                            </shadow>
                                                                                                                            <block type="convert_tonumber" id=".=K9g}[7bu{g8air]Odh">
                                                                                                                              <value name="VALUE">
                                                                                                                                <block type="math_number" id="EY7#2cwHrSo]I.:DVX1j">
                                                                                                                                  <field name="NUM">0.002</field>
                                                                                                                                </block>
                                                                                                                              </value>
                                                                                                                            </block>
                                                                                                                          </value>
                                                                                                                        </block>
                                                                                                                      </value>
                                                                                                                      <next>
                                                                                                                        <block type="controls_if" id="@Cg/@d`~KK40%[Kb$0V$">
                                                                                                                          <value name="IF0">
                                                                                                                            <block type="logic_compare" id="J-HC~x%BBhXL/2wui`F*">
                                                                                                                              <field name="OP">EQ</field>
                                                                                                                              <value name="A">
                                                                                                                                <block type="variables_get" id="$02cROc|to:7~S+n%RX`">
                                                                                                                                  <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                                                                                                </block>
                                                                                                                              </value>
                                                                                                                              <value name="B">
                                                                                                                                <block type="math_number" id="R6e2e=-sldhB#G=_pCnn">
                                                                                                                                  <field name="NUM">100</field>
                                                                                                                                </block>
                                                                                                                              </value>
                                                                                                                            </block>
                                                                                                                          </value>
                                                                                                                          <statement name="DO0">
                                                                                                                            <block type="timeouts_clearinterval" id="9Z%z}0x$#qpLd70F18gL">
                                                                                                                              <field name="NAME">Intervall</field>
                                                                                                                            </block>
                                                                                                                          </statement>
                                                                                                                        </block>
                                                                                                                      </next>
                                                                                                                    </block>
                                                                                                                  </next>
                                                                                                                </block>
                                                                                                              </next>
                                                                                                            </block>
                                                                                                          </next>
                                                                                                        </block>
                                                                                                      </next>
                                                                                                    </block>
                                                                                                  </next>
                                                                                                </block>
                                                                                              </next>
                                                                                            </block>
                                                                                          </next>
                                                                                        </block>
                                                                                      </next>
                                                                                    </block>
                                                                                  </next>
                                                                                </block>
                                                                              </next>
                                                                            </block>
                                                                          </next>
                                                                        </block>
                                                                      </next>
                                                                    </block>
                                                                  </next>
                                                                </block>
                                                              </next>
                                                            </block>
                                                          </next>
                                                        </block>
                                                      </next>
                                                    </block>
                                                  </next>
                                                </block>
                                              </next>
                                            </block>
                                          </next>
                                        </block>
                                      </statement>
                                    </block>
                                  </next>
                                </block>
                              </next>
                            </block>
                          </next>
                        </block>
                      </next>
                    </block>
                  </next>
                </block>
              </statement>
            </block>
          </xml>
          

          dennoch wird das Objekt nicht als Array erkannt . Hier die Fehlermeldungen die beim Ausführen des Scriptes:

          deconz.0	2021-12-20 09:38:35.866	warn	(1897) {"address":"/lights/9/state","description":"parameter, xy, is not modifiable. Device is set to off.","type":201}
          deconz.0	2021-12-20 09:38:35.863	warn	(1897) {"address":"/lights/9/state","description":"parameter, bri, is not modifiable. Device is set to off.","type":201}
          javascript.0	2021-12-20 09:38:35.805	error	(959) at processTimers (internal/timers.js:497:7)
          javascript.0	2021-12-20 09:38:35.804	error	(959) at listOnTimeout (internal/timers.js:554:17)
          javascript.0	2021-12-20 09:38:35.804	error	(959) at Timeout._onTimeout (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:2085:34)
          javascript.0	2021-12-20 09:38:35.804	error	(959) at Object.<anonymous> (script.js.Light-Control.Schlafzimmer.Sonnenaufgang_TEST:28:72)
          javascript.0	2021-12-20 09:38:35.803	error	(959) script.js.Light-Control.Schlafzimmer.Sonnenaufgang_TEST: TypeError: V_Farbwert_X_Y.split is not a function
          javascript.0	2021-12-20 09:38:35.801	info	(959) script.js.Light-Control.Schlafzimmer.Sonnenaufgang_TEST: 12.) Farbton X/Y: 0.7346,0.265
          javascript.0	2021-12-20 09:38:35.801	warn	(959) at processTimers (internal/timers.js:497:7)
          javascript.0	2021-12-20 09:38:35.800	warn	(959) at listOnTimeout (internal/timers.js:554:17)
          javascript.0	2021-12-20 09:38:35.800	warn	(959) at Timeout._onTimeout (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:2085:34)
          javascript.0	2021-12-20 09:38:35.799	warn	(959) at Object.<anonymous> (script.js.Light-Control.Schlafzimmer.Sonnenaufgang_TEST:26:5)
          javascript.0	2021-12-20 09:38:35.799	warn	(959) at setState (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1439:20)
          javascript.0	2021-12-20 09:38:35.797	warn	(959) You are assigning a string to the state "deconz.0.Lights.9.xy" which expects a array. Please fix your code to use a array or change the state type to string. This warning might become an error i
          

          Ich bin und bleibe ratlos 😞
          Gruß Mercy

          paul53 1 Reply Last reply Reply Quote 0
          • paul53
            paul53 @Mercyful 0 last edited by paul53

            @mercyful-0 sagte: dennoch wird das Objekt nicht als Array erkannt .

            Du wandelst es ja auch in ein JSON. Richtig:

            Blockly_temp.JPG

            <xml xmlns="https://developers.google.com/blockly/xml">
             <variables>
               <variable id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</variable>
               <variable id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</variable>
               <variable id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</variable>
               <variable type="interval" id="Intervall">Intervall</variable>
               <variable id="cQXpIFX1XTNiV$VQut6W">V_Farbwert_X/Y</variable>
             </variables>
             <block type="on" id="wafVglRXOAVv!O@OpR#M" x="-502" y="-19">
               <field name="OID">javascript.0.variables.b_Sonnenaufgang</field>
               <field name="CONDITION">ne</field>
               <field name="ACK_CONDITION"></field>
               <statement name="STATEMENT">
                 <block type="variables_set" id="rH;[B:a_G6lsC6V:)6%q">
                   <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                   <value name="VALUE">
                     <block type="math_number" id="]-YS,Vt6}NL=T!9t/3=y">
                       <field name="NUM">0</field>
                     </block>
                   </value>
                   <next>
                     <block type="variables_set" id="^2e~@]XE*k;2}Nud6M2M">
                       <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                       <value name="VALUE">
                         <block type="math_number" id="@z:LeKgx{$H_2Yd9AZ)^">
                           <field name="NUM">0.7346</field>
                         </block>
                       </value>
                       <next>
                         <block type="variables_set" id="gPFus8t7~XT9+YjHROoW">
                           <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                           <value name="VALUE">
                             <block type="math_number" id="MZglVx^cfeAtPaJ}(Z~0">
                               <field name="NUM">0.265</field>
                             </block>
                           </value>
                           <next>
                             <block type="debug" id="6$8!T~et}IfvX4V3r3+H">
                               <field name="Severity">log</field>
                               <value name="TEXT">
                                 <shadow type="text" id="@Dmt*a[;F-Gp^d3mq^T;">
                                   <field name="TEXT">1.) Jetzt geht es los mit dem Sonnenaufgang!!!  </field>
                                 </shadow>
                               </value>
                               <next>
                                 <block type="timeouts_setinterval" id="{GCSVyUydL]+Q~Ru,fQE">
                                   <field name="NAME">Intervall</field>
                                   <field name="INTERVAL">5</field>
                                   <field name="UNIT">sec</field>
                                   <statement name="STATEMENT">
                                     <block type="debug" id="I~-I0Z~L@)`!I@i[i$*+">
                                       <field name="Severity">log</field>
                                       <value name="TEXT">
                                         <shadow type="text" id="@-!h*qW..wa,wHL}PZKI">
                                           <field name="TEXT">2.) Zeige die Variablen ob diese richtig sind: </field>
                                         </shadow>
                                       </value>
                                       <next>
                                         <block type="debug" id="fP,/ZvTV%54er@,5-+$q">
                                           <field name="Severity">log</field>
                                           <value name="TEXT">
                                             <shadow type="text">
                                               <field name="TEXT">Helligkeit in %: </field>
                                             </shadow>
                                             <block type="text_join" id="L$G6zX`1u(-*n_m5bjC0">
                                               <mutation items="2"></mutation>
                                               <value name="ADD0">
                                                 <block type="text" id="_6c7S7wL.I]y^WfTaXFC">
                                                   <field name="TEXT">3.) Variable Helligkeit in %: </field>
                                                 </block>
                                               </value>
                                               <value name="ADD1">
                                                 <block type="variables_get" id="XIEw@%H%(sA0,4N`4O17">
                                                   <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                 </block>
                                               </value>
                                             </block>
                                           </value>
                                           <next>
                                             <block type="debug" id="D^Va%bx/I`co2/IMQErk">
                                               <field name="Severity">log</field>
                                               <value name="TEXT">
                                                 <shadow type="text">
                                                   <field name="TEXT">Helligkeit in %: </field>
                                                 </shadow>
                                                 <block type="text_join" id="OBR,bkXOv/1qHy+_UI]@">
                                                   <mutation items="2"></mutation>
                                                   <value name="ADD0">
                                                     <block type="text" id="yHz}C-w!8$_X2!FqLyrl">
                                                       <field name="TEXT">4.) Variable Farbton X: </field>
                                                     </block>
                                                   </value>
                                                   <value name="ADD1">
                                                     <block type="variables_get" id="A41u+D:EPS)#M_)2{xT5">
                                                       <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                                                     </block>
                                                   </value>
                                                 </block>
                                               </value>
                                               <next>
                                                 <block type="debug" id="U.WEd.c.D8[*H)^;SQMv">
                                                   <field name="Severity">log</field>
                                                   <value name="TEXT">
                                                     <shadow type="text">
                                                       <field name="TEXT">Helligkeit in %: </field>
                                                     </shadow>
                                                     <block type="text_join" id="g54|FIkBfM#fCd=zXc50">
                                                       <mutation items="2"></mutation>
                                                       <value name="ADD0">
                                                         <block type="text" id="w=Imp91h*T_#i@gw.BZt">
                                                           <field name="TEXT">5.) Variable Farbton Y: </field>
                                                         </block>
                                                       </value>
                                                       <value name="ADD1">
                                                         <block type="variables_get" id="^3;2+]lbv?}#dgo^k..[">
                                                           <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                                                         </block>
                                                       </value>
                                                     </block>
                                                   </value>
                                                   <next>
                                                     <block type="control" id="8}=Vf5GHgcr$D~n?VEc4">
                                                       <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                                                       <field name="OID">deconz.0.Lights.9.level</field>
                                                       <field name="WITH_DELAY">FALSE</field>
                                                       <value name="VALUE">
                                                         <block type="variables_get" id="}L4j{,wQ-Glxd/MiEk#x">
                                                           <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                         </block>
                                                       </value>
                                                       <next>
                                                         <block type="variables_set" id="pZrX(^|l}i}zZ9y[;pn;">
                                                           <field name="VAR" id="cQXpIFX1XTNiV$VQut6W">V_Farbwert_X/Y</field>
                                                           <value name="VALUE">
                                                             <block type="lists_create_with" id="F]3#H[o{YXtHE+;IS-8j">
                                                               <mutation items="2"></mutation>
                                                               <value name="ADD0">
                                                                 <block type="variables_get" id="Eq9V?UfJG%)DkZfN~N-3">
                                                                   <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                                                                 </block>
                                                               </value>
                                                               <value name="ADD1">
                                                                 <block type="variables_get" id="/cW6-zgv$4_Te#1QSR.w">
                                                                   <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                                                                 </block>
                                                               </value>
                                                             </block>
                                                           </value>
                                                           <next>
                                                             <block type="debug" id="c$R%e?kL7:VXstwCy{Zg">
                                                               <field name="Severity">log</field>
                                                               <value name="TEXT">
                                                                 <shadow type="text" id="k3L#mNwZ(g/,mxf`U:w:">
                                                                   <field name="TEXT">test</field>
                                                                 </shadow>
                                                                 <block type="text_join" id="e9R/i1M+[2]XVXt.k]O`">
                                                                   <mutation items="2"></mutation>
                                                                   <value name="ADD0">
                                                                     <block type="text" id="f0NCQJu!h;xQ93K,*2cP">
                                                                       <field name="TEXT">11.) JSON Object Farbton X/Y ist: </field>
                                                                     </block>
                                                                   </value>
                                                                   <value name="ADD1">
                                                                     <block type="convert_object2json" id="ffGqjKb[3X,Q(`a?0vxD">
                                                                       <field name="PRETTIFY">FALSE</field>
                                                                       <value name="VALUE">
                                                                         <block type="variables_get" id="wvE!#kLLp$=z*mn17Il2">
                                                                           <field name="VAR" id="cQXpIFX1XTNiV$VQut6W">V_Farbwert_X/Y</field>
                                                                         </block>
                                                                       </value>
                                                                     </block>
                                                                   </value>
                                                                 </block>
                                                               </value>
                                                               <next>
                                                                 <block type="control" id="GdBaux25iO`5_Q{7FOz.">
                                                                   <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                                                                   <field name="OID">deconz.0.Lights.9.xy</field>
                                                                   <field name="WITH_DELAY">FALSE</field>
                                                                   <value name="VALUE">
                                                                     <block type="variables_get" id="g_b*?w1~bS~l|*B:i}GA">
                                                                       <field name="VAR" id="cQXpIFX1XTNiV$VQut6W">V_Farbwert_X/Y</field>
                                                                     </block>
                                                                   </value>
                                                                   <next>
                                                                     <block type="math_change" id="OOJrfmM_t#Ayr-%_ly}V">
                                                                       <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                                       <value name="DELTA">
                                                                         <shadow type="math_number" id="pk)vw#%c91Ry2Jh|Ez]1">
                                                                           <field name="NUM">1</field>
                                                                         </shadow>
                                                                       </value>
                                                                       <next>
                                                                         <block type="math_change" id="$ry|:.?Ti|N=Yxh!XJU8">
                                                                           <field name="VAR" id="Bpo?M3yT9_Q!Alkd~Z0L">V_Farbton_X</field>
                                                                           <value name="DELTA">
                                                                             <shadow type="math_number" id="g@IrbfrmNN#h~j}nYcw#">
                                                                               <field name="NUM">-0.002</field>
                                                                             </shadow>
                                                                           </value>
                                                                           <next>
                                                                             <block type="math_change" id="Y!UZ?rEHm`^[?)ZGCeND">
                                                                               <field name="VAR" id="A1;vRg.y1WRpZG7`FU})">V_Farbton_Y</field>
                                                                               <value name="DELTA">
                                                                                 <shadow type="math_number" id="DNI^~%kakcOVEB,t*`oE">
                                                                                   <field name="NUM">0.002</field>
                                                                                 </shadow>
                                                                               </value>
                                                                               <next>
                                                                                 <block type="controls_if" id="@Cg/@d`~KK40%[Kb$0V$">
                                                                                   <value name="IF0">
                                                                                     <block type="logic_compare" id="J-HC~x%BBhXL/2wui`F*">
                                                                                       <field name="OP">GTE</field>
                                                                                       <value name="A">
                                                                                         <block type="variables_get" id="$02cROc|to:7~S+n%RX`">
                                                                                           <field name="VAR" id="0*D.N}_t/EzdZ,YlnaN%">V_Helligkeit_in_%</field>
                                                                                         </block>
                                                                                       </value>
                                                                                       <value name="B">
                                                                                         <block type="math_number" id="R6e2e=-sldhB#G=_pCnn">
                                                                                           <field name="NUM">100</field>
                                                                                         </block>
                                                                                       </value>
                                                                                     </block>
                                                                                   </value>
                                                                                   <statement name="DO0">
                                                                                     <block type="timeouts_clearinterval" id="9Z%z}0x$#qpLd70F18gL">
                                                                                       <field name="NAME">Intervall</field>
                                                                                     </block>
                                                                                   </statement>
                                                                                 </block>
                                                                               </next>
                                                                             </block>
                                                                           </next>
                                                                         </block>
                                                                       </next>
                                                                     </block>
                                                                   </next>
                                                                 </block>
                                                               </next>
                                                             </block>
                                                           </next>
                                                         </block>
                                                       </next>
                                                     </block>
                                                   </next>
                                                 </block>
                                               </next>
                                             </block>
                                           </next>
                                         </block>
                                       </next>
                                     </block>
                                   </statement>
                                 </block>
                               </next>
                             </block>
                           </next>
                         </block>
                       </next>
                     </block>
                   </next>
                 </block>
               </statement>
             </block>
            </xml>
            

            M 1 Reply Last reply Reply Quote 0
            • M
              Mercyful 0 @paul53 last edited by

              @paul53
              Vielen Dank! Jetzt läuft es!
              Schöne Grüße
              Mercy

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

              Support us

              ioBroker
              Community Adapters
              Donate

              421
              Online

              32.0k
              Users

              80.5k
              Topics

              1.3m
              Posts

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