Navigation

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

    NEWS

    • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?

    • Monatsrückblick – September 2025

    • Neues Video "KI im Smart Home" - ioBroker plus n8n

    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 33
    • Posts 318
    • Best 5
    • Groups 2

    jwerlsdf

    @jwerlsdf

    Starter

    5
    Reputation
    85
    Profile views
    318
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    jwerlsdf Follow
    Pro Starter

    Best posts made by jwerlsdf

    • RE: SDM120 SDM72 SDM630 Modbus RS485 Stromzähler (W)LAN ioBroker

      @klassisch
      Also ich schäme mich ja fast, das zu schreiben, aber ich habe den Fehler gefunden. Ich habe bei der Verkabelung nicht richtig hingeschaut und habe eines der Kabel an die Erde geklemmt und nicht an B.
      Daher vielen Dank fur die Hilfe!!! Es geht nun alles.

      Jetzt habe ich noch eine kleine Frage. Wenn ich noch einen weiteren sdm630 verbaue kann ich vom anderen 630 in die Anschlüsse a und b gehen, sodass ich eine reihenschaltung einstelle und dann nur im sdm auf 002 die id stelle und im adapter ebenfalls auf 2 gehe?

      posted in Praktische Anwendungen (Showcase)
      J
      jwerlsdf
    • RE: [Vorlage] Android Wecker iobroker blockly

      @MisterBlinki
      versuch das mal. Beim export ist wohl ein bisschen zuviel reingekommen:
      Rollo Wecker.txt

      @smile
      Bei fehlen die Wecker-Objekte... Hast du noch weitere Einstellungen drinnen?!
      Wenn ich pushover nicht habe, kann ich dann auch den Versand per telegram zulassen?

      posted in Blockly
      J
      jwerlsdf
    • RE: zum aktuellen Datum Tage addieren

      @maik-0
      geht leider immer noch nicht. Das Datum bleibt auf dem heutigen Stand. Wie gesagt. Mit dem Zahlencode kann ich einen Tag addieren zum aktuellen Datum und es funktioniert. Es geht aber nur nicht mit mehreren Additionen/ Tagen.

      edit:
      Es lag tatsächlich an den "Nullen". Es waren zwei zu wenig. So wäre es richtig:

      86400000
      172800000
      259200000
      345600000
      432000000
      518400000
      604800000
      ...

      posted in Blockly
      J
      jwerlsdf
    • RE: Hilfe bei request -> http Umstellung Sonos Sprachausgabe

      @xbit
      Die sonos App auf die Version 80.x. Ging auch ein Firmware Update der sonos Boxen einher. So ganz genau kann ich es aber nicht mehr sagen. Aber mit dieser neuen Version gingen bei mir alle Probleme los.

      posted in Blockly
      J
      jwerlsdf
    • RE: exec befehl mit root Berechtigung (SONOSAPI)

      Hi,
      Ich hatte ein ähnliches Problem. Bei einem Neustart sollte ein Befehl an raspberry gesendet werden. Das PW sollte dabei mitgegeben werden. Mit blockly habe ich es nicht hinbekommen, mit Java gings.
      Das Skript macht folgendes. Es überprüft den Datenpunkt mpd info connect auf false. Ist dieser auf false, wird sich auf dem raspberry mit pw eingeloggt jnd der sudo Befehl abgewendet.

      Vielleicht hilft dir das Skript weiter. Habe dir noch einige Anmerkungen reingeschri3ben

      const { Client } = require('ssh2'); // Importiere die ssh2 Bibliothek
      
      // Konfiguration für den Raspberry Pi MPD (IP, Benutzername und Passwort)
      const raspberryMPDConfig = {
        host: '192.168.XXX.XX', // IP-Adresse von Raspberry Pi MPD
        port: 22,
        username: 'pi', // Benutzername auf Raspberry Pi MPD
        password: 'XXX' // Passwort für den Benutzer
      };
      
      let sshErrorLogged = false; // Flag, um Fehler nur einmal zu protokollieren
      
      // Funktion, die den Befehl an Raspberry Pi MPD sendet
      function sendCommandToRaspberryMPD() {
        const conn = new Client();
      
        // Verbindung zu Raspberry Pi MPD herstellen
        conn.on('ready', () => {
          // Den Befehl "sudo service mpd start" ausführen
          conn.exec('sudo service mpd start', (err, stream) => {
            if (err) {
              if (!sshErrorLogged) {
                console.error('Fehler beim Ausführen des Befehls:', err); // Fehler nur einmal loggen
                sshErrorLogged = true; // Fehler flag setzen
              }
              conn.end();
              return;
            }
      
            stream.on('data', () => {
              // Keine Ausgabe mehr aufzeichnen
            });
      
            stream.on('close', () => {
              conn.end(); // Verbindung schließen
            });
          });
        }).on('error', () => {
          if (!sshErrorLogged) {
            console.error('Fehler bei der SSH-Verbindung.'); // Fehler nur einmal loggen
            sshErrorLogged = true; // Fehler flag setzen
          }
        }).connect(raspberryMPDConfig);
      }
      
      // Event-Listener für den Datenpunkt mpd.0.info.connection
      on({ id: 'mpd.0.info.connection', val: false }, async (obj) => {
        let value = obj.state.val;  // Der aktuelle Wert des Datenpunkts
        let oldValue = obj.oldState.val;  // Der vorherige Wert des Datenpunkts
      
        if (value === false) {
          sendCommandToRaspberryMPD();
        } else {
          sshErrorLogged = false; // Fehlerflag zurücksetzen, wenn der Wert nicht mehr false ist
        }
      });
      
      posted in Blockly
      J
      jwerlsdf

    Latest posts made by jwerlsdf

    • RE: Fehler bei der Wled steuerung mit Blockly

      @mr-schiefer
      Wenn das Garagentor halb offen ist sind beide kontaktschalter auf true ODER false (je nachdem welche kontaktschalter du wie verbaut hast.)
      Prüfe also auf diese Bedingung.
      Wenn beide auf false bzw true sind, lass einen Timer laufen. Wenn dein Garagentor z.b 10 Sekunden braucht zum fahren, dann würde ich den timer auf 20 Sekunden zum Beispiel stellen. Wenn dann einer der Datenpunkt der kontaktschalter sich nicht geändert hat, dann wurde das garagentor angehalten.

      posted in Blockly
      J
      jwerlsdf
    • RE: Fehler bei der Wled steuerung mit Blockly

      @mr-schiefer
      Schau mal bei mir. Ich habe zwei fensterkontaktschalter die den Zustand messen.
      Anbei das blockly

      <xml xmlns="https://developers.google.com/blockly/xml">
       <block type="on_ext" id="iLrack)8HPWM2$$6N1FH" x="-737" y="-1462">
         <mutation xmlns="http://www.w3.org/1999/xhtml" items="2"></mutation>
         <field name="CONDITION">ne</field>
         <field name="ACK_CONDITION"></field>
         <value name="OID0">
           <shadow type="field_oid" id="Th+yyEn^)|IzKleM:XUJ">
             <field name="oid">hm-rpc.1.0016E0C992570B.6.STATE</field>
           </shadow>
         </value>
         <value name="OID1">
           <shadow type="field_oid" id="a!KNZMg%Yg^OBzJSsrfX">
             <field name="oid">hm-rpc.1.0016E0C992570B.5.STATE</field>
           </shadow>
         </value>
         <statement name="STATEMENT">
           <block type="controls_if" id="x)s5mH036o4~erDEhlAG">
             <mutation elseif="2"></mutation>
             <value name="IF0">
               <block type="logic_operation" id="{xU2c7hSi%%RplQtpl9I" inline="false">
                 <field name="OP">AND</field>
                 <value name="A">
                   <block type="logic_compare" id="pYw0mk{Dc51LnrKzs9/N">
                     <field name="OP">EQ</field>
                     <value name="A">
                       <block type="get_value" id="Q(w*Rr{h]^mQ8~TB|cub">
                         <field name="ATTR">val</field>
                         <field name="OID">hm-rpc.1.0016E0C992570B.5.STATE</field>
                       </block>
                     </value>
                     <value name="B">
                       <block type="logic_boolean" id="H8)SVj#JC5Het_F1m0b@">
                         <field name="BOOL">FALSE</field>
                       </block>
                     </value>
                   </block>
                 </value>
                 <value name="B">
                   <block type="logic_compare" id="3A]Dke5PKzjCwXd-U@D#">
                     <field name="OP">EQ</field>
                     <value name="A">
                       <block type="get_value" id="dxJFTi:R:1+;Xo~BQG[k">
                         <field name="ATTR">val</field>
                         <field name="OID">hm-rpc.1.0016E0C992570B.6.STATE</field>
                       </block>
                     </value>
                     <value name="B">
                       <block type="logic_boolean" id="P{0,(?^[b6$]qAncl0qI">
                         <field name="BOOL">TRUE</field>
                       </block>
                     </value>
                   </block>
                 </value>
               </block>
             </value>
             <statement name="DO0">
               <block type="update" id="AIf-Ql/lGR(Y_zdd/g^;">
                 <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                 <field name="OID">0_userdata.0.Garagentorzustand</field>
                 <field name="WITH_DELAY">FALSE</field>
                 <value name="VALUE">
                   <block type="text" id="zWaPv0Gy/Pv[K=]%j+=`">
                     <field name="TEXT">offen</field>
                   </block>
                 </value>
               </block>
             </statement>
             <value name="IF1">
               <block type="logic_operation" id="IC#f5sVy:vqYf_.BW6*M" inline="false">
                 <field name="OP">AND</field>
                 <value name="A">
                   <block type="logic_compare" id="UFQilt-flYxV4HNF,E$h">
                     <field name="OP">EQ</field>
                     <value name="A">
                       <block type="get_value" id="{?9q)+=oz^Um%fSm2Cy5">
                         <field name="ATTR">val</field>
                         <field name="OID">hm-rpc.1.0016E0C992570B.5.STATE</field>
                       </block>
                     </value>
                     <value name="B">
                       <block type="logic_boolean" id="Ha@m0BZiRzHV;Eo*e+4H">
                         <field name="BOOL">TRUE</field>
                       </block>
                     </value>
                   </block>
                 </value>
                 <value name="B">
                   <block type="logic_compare" id="4=iBD]c|$ugY}1QY2Jbm">
                     <field name="OP">EQ</field>
                     <value name="A">
                       <block type="get_value" id="%0=De%;!conv8X!#!B{@">
                         <field name="ATTR">val</field>
                         <field name="OID">hm-rpc.1.0016E0C992570B.6.STATE</field>
                       </block>
                     </value>
                     <value name="B">
                       <block type="logic_boolean" id="Vh-,VK7T{c6Y254|JCL1">
                         <field name="BOOL">TRUE</field>
                       </block>
                     </value>
                   </block>
                 </value>
               </block>
             </value>
             <statement name="DO1">
               <block type="update" id="rB~$h:Y8kn^Z:$u`_yP^">
                 <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                 <field name="OID">0_userdata.0.Garagentorzustand</field>
                 <field name="WITH_DELAY">FALSE</field>
                 <value name="VALUE">
                   <block type="text" id="aI77AEnqrriuFOJNJb37">
                     <field name="TEXT">fahren</field>
                   </block>
                 </value>
               </block>
             </statement>
             <value name="IF2">
               <block type="logic_operation" id="p(j(Q_KWb7[iZ,_ps_Xe" inline="false">
                 <field name="OP">AND</field>
                 <value name="A">
                   <block type="logic_compare" id="3S]jEE;[O`V5~M9}V?pC">
                     <field name="OP">EQ</field>
                     <value name="A">
                       <block type="get_value" id="dL,/^!;UHGka[G5YNr]=">
                         <field name="ATTR">val</field>
                         <field name="OID">hm-rpc.1.0016E0C992570B.5.STATE</field>
                       </block>
                     </value>
                     <value name="B">
                       <block type="logic_boolean" id="g23^jcT2[Z6@lbJT1(mV">
                         <field name="BOOL">TRUE</field>
                       </block>
                     </value>
                   </block>
                 </value>
                 <value name="B">
                   <block type="logic_compare" id="2YY#@qI_c=6g]fH|},q|">
                     <field name="OP">EQ</field>
                     <value name="A">
                       <block type="get_value" id="3iX`E1NW,{Dvo*7:ckXK">
                         <field name="ATTR">val</field>
                         <field name="OID">hm-rpc.1.0016E0C992570B.6.STATE</field>
                       </block>
                     </value>
                     <value name="B">
                       <block type="logic_boolean" id="%_u2Qef!N^7#9tVF+1WH">
                         <field name="BOOL">FALSE</field>
                       </block>
                     </value>
                   </block>
                 </value>
               </block>
             </value>
             <statement name="DO2">
               <block type="update" id="dOz8_7-Y#C9:`PfL,~b0">
                 <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                 <field name="OID">0_userdata.0.Garagentorzustand</field>
                 <field name="WITH_DELAY">FALSE</field>
                 <value name="VALUE">
                   <block type="text" id=";W*X^NQ;g^Z?yrIq?!w(">
                     <field name="TEXT">geschlossen</field>
                   </block>
                 </value>
               </block>
             </statement>
           </block>
         </statement>
         <next>
           <block type="on_ext" id="?V(Z4EQ^.,{hJD*1U6`$">
             <mutation xmlns="http://www.w3.org/1999/xhtml" items="1"></mutation>
             <field name="CONDITION">ne</field>
             <field name="ACK_CONDITION"></field>
             <value name="OID0">
               <shadow type="field_oid" id="YsT+nA]{v]#J29U.hZUS">
                 <field name="oid">0_userdata.0.Garagentorzustand</field>
               </shadow>
             </value>
             <statement name="STATEMENT">
               <block type="controls_if" id="!Qou#^}GVJ)nO1JDtv6f">
                 <value name="IF0">
                   <block type="logic_operation" id="jk+qP_@[!lWH#EsHyQ0=" inline="false">
                     <field name="OP">AND</field>
                     <value name="A">
                       <block type="logic_compare" id="Lh/8bw/`.HRs:4h;h({y">
                         <field name="OP">EQ</field>
                         <value name="A">
                           <block type="get_value" id="$x:WE/CX-,05-N$`QWVe">
                             <field name="ATTR">val</field>
                             <field name="OID">0_userdata.0.Garagentorzustand</field>
                           </block>
                         </value>
                         <value name="B">
                           <block type="text" id="lFeSLIiYCZTNl|OZ9m-.">
                             <field name="TEXT">fahren</field>
                           </block>
                         </value>
                       </block>
                     </value>
                     <value name="B">
                       <block type="logic_compare" id="fa8omyX$:g)/^^?`+_xY">
                         <field name="OP">LT</field>
                         <value name="A">
                           <block type="get_value" id="^Xkf-4(778:~F%5P]gu{">
                             <field name="ATTR">val</field>
                             <field name="OID">hm-rpc.1.00181BE9946BC5.1.ILLUMINATION</field>
                           </block>
                         </value>
                         <value name="B">
                           <block type="math_number" id="}-#:hYM=ut7liK_{*1Z,">
                             <field name="NUM">100</field>
                           </block>
                         </value>
                       </block>
                     </value>
                   </block>
                 </value>
                 <statement name="DO0">
                   <block type="control" id="m47jZWGEnoa;iwmq(]Tl">
                     <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                     <field name="OID">wled.0.fcb467c88924.on</field>
                     <field name="WITH_DELAY">FALSE</field>
                     <value name="VALUE">
                       <block type="logic_boolean" id="0U==DEe;{Zh!{4[*}wY(">
                         <field name="BOOL">TRUE</field>
                       </block>
                     </value>
                     <next>
                       <block type="comment" id="WK`i6Yez7laz%]}EG8D8">
                         <field name="COMMENT">Rot</field>
                         <next>
                           <block type="control" id="xRxX[3--A5EtO@h^4vv5">
                             <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                             <field name="OID">wled.0.fcb467c88924.ps</field>
                             <field name="WITH_DELAY">FALSE</field>
                             <comment pinned="false" h="80" w="160">Farbe: weiß</comment>
                             <value name="VALUE">
                               <block type="math_number" id="f#u%4:p:^Kk6*ci%T9y}">
                                 <field name="NUM">1</field>
                               </block>
                             </value>
                           </block>
                         </next>
                       </block>
                     </next>
                   </block>
                 </statement>
                 <next>
                   <block type="controls_if" id="9?=0JOo},/O+vIO!2?_j">
                     <value name="IF0">
                       <block type="logic_operation" id="1!DKi%0RMLxNX5s-SgZz" inline="false">
                         <field name="OP">AND</field>
                         <value name="A">
                           <block type="logic_compare" id="R2s;UBhl0]fW58/,zn%J">
                             <field name="OP">EQ</field>
                             <value name="A">
                               <block type="get_value" id="OSTzsVh/B?L;0WBC:y;R">
                                 <field name="ATTR">val</field>
                                 <field name="OID">0_userdata.0.Garagentorzustand</field>
                               </block>
                             </value>
                             <value name="B">
                               <block type="text" id="@s-9+WizCBT`+ixN|6J%">
                                 <field name="TEXT">offen</field>
                               </block>
                             </value>
                           </block>
                         </value>
                         <value name="B">
                           <block type="logic_compare" id=":8DS=oC`=uGY@EJkv6ux">
                             <field name="OP">LT</field>
                             <value name="A">
                               <block type="get_value" id="hKQ-,tr:4mfO4_1lp+}S">
                                 <field name="ATTR">val</field>
                                 <field name="OID">hm-rpc.1.00181BE9946BC5.1.ILLUMINATION</field>
                               </block>
                             </value>
                             <value name="B">
                               <block type="math_number" id="afQe@r!R$ak_$*zr+(W.">
                                 <field name="NUM">100</field>
                               </block>
                             </value>
                           </block>
                         </value>
                       </block>
                     </value>
                     <statement name="DO0">
                       <block type="comment" id=".cNRNoO*|OAnQMkBGB)*">
                         <field name="COMMENT">Grün</field>
                         <next>
                           <block type="control" id="bcW2`8yAA@uE[wYIihyt">
                             <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                             <field name="OID">wled.0.fcb467c88924.ps</field>
                             <field name="WITH_DELAY">FALSE</field>
                             <comment pinned="false" h="80" w="160">Farbe: weiß</comment>
                             <value name="VALUE">
                               <block type="math_number" id="|^kd%Zyls%y#^?~._U!z">
                                 <field name="NUM">2</field>
                               </block>
                             </value>
                             <next>
                               <block type="comment" id="Zr7tX[c+9?vOZ.yqgOzf">
                                 <field name="COMMENT">Weiß</field>
                                 <next>
                                   <block type="control" id="DS)Y:u/P}zi//p)=^`?[">
                                     <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                     <field name="OID">wled.0.fcb467c88924.ps</field>
                                     <field name="WITH_DELAY">TRUE</field>
                                     <field name="DELAY_MS">3</field>
                                     <field name="UNIT">sec</field>
                                     <field name="CLEAR_RUNNING">FALSE</field>
                                     <comment pinned="false" h="80" w="160">Farbe: weiß</comment>
                                     <value name="VALUE">
                                       <block type="math_number" id="XsBfW++=a1$[FR{~UTwh">
                                         <field name="NUM">3</field>
                                       </block>
                                     </value>
                                     <next>
                                       <block type="comment" id="a+q-%~D-LAg_XfBg5#s)">
                                         <field name="COMMENT">Weiß Spots</field>
                                         <next>
                                           <block type="control" id="G^)k]8evkm/M^o0z6B^H">
                                             <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                             <field name="OID">wled.0.fcb467c88924.ps</field>
                                             <field name="WITH_DELAY">TRUE</field>
                                             <field name="DELAY_MS">6</field>
                                             <field name="UNIT">sec</field>
                                             <field name="CLEAR_RUNNING">FALSE</field>
                                             <comment pinned="false" h="80" w="160">Farbe: weiß</comment>
                                             <value name="VALUE">
                                               <block type="math_number" id="jj.FcW?sX2}+d_S17-JG">
                                                 <field name="NUM">4</field>
                                               </block>
                                             </value>
                                             <next>
                                               <block type="control" id="Ckt.}edlOXN%[pfX{K+L">
                                                 <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                                 <field name="OID">wled.0.fcb467c88924.on</field>
                                                 <field name="WITH_DELAY">TRUE</field>
                                                 <field name="DELAY_MS">20</field>
                                                 <field name="UNIT">sec</field>
                                                 <field name="CLEAR_RUNNING">FALSE</field>
                                                 <value name="VALUE">
                                                   <block type="logic_boolean" id="EXbez{j1{xo*,^kZ0C=^">
                                                     <field name="BOOL">FALSE</field>
                                                   </block>
                                                 </value>
                                               </block>
                                             </next>
                                           </block>
                                         </next>
                                       </block>
                                     </next>
                                   </block>
                                 </next>
                               </block>
                             </next>
                           </block>
                         </next>
                       </block>
                     </statement>
                     <next>
                       <block type="controls_if" id="#w2XtU=+[fF%/U@k-,.d">
                         <value name="IF0">
                           <block type="logic_operation" id="AE+--vX4@#t`Wl#^ZBTg" inline="false">
                             <field name="OP">AND</field>
                             <value name="A">
                               <block type="logic_compare" id="VG9r|GSnYRi[:o_jB~+V">
                                 <field name="OP">EQ</field>
                                 <value name="A">
                                   <block type="get_value" id="P{*}t3;=nG-kn9|QD-3J">
                                     <field name="ATTR">val</field>
                                     <field name="OID">0_userdata.0.Garagentorzustand</field>
                                   </block>
                                 </value>
                                 <value name="B">
                                   <block type="text" id="HYTk]1O#ZbNj8d);Ud9Q">
                                     <field name="TEXT">geschlossen</field>
                                   </block>
                                 </value>
                               </block>
                             </value>
                             <value name="B">
                               <block type="logic_compare" id="3uBn3(eB780?dbW=J1sa">
                                 <field name="OP">LT</field>
                                 <value name="A">
                                   <block type="get_value" id="wV(HKNBK`;p=}O]Id7yt">
                                     <field name="ATTR">val</field>
                                     <field name="OID">hm-rpc.1.00181BE9946BC5.1.ILLUMINATION</field>
                                   </block>
                                 </value>
                                 <value name="B">
                                   <block type="math_number" id="}DoDyM?f0vG3|sh^l*.e">
                                     <field name="NUM">100</field>
                                   </block>
                                 </value>
                               </block>
                             </value>
                           </block>
                         </value>
                         <statement name="DO0">
                           <block type="comment" id="2DXlRQA!LH5v?v4fZdO(">
                             <field name="COMMENT">Grün</field>
                             <next>
                               <block type="control" id="-/oBs[h-0g2}g0liXgGJ">
                                 <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                                 <field name="OID">wled.0.fcb467c88924.ps</field>
                                 <field name="WITH_DELAY">FALSE</field>
                                 <comment pinned="false" h="80" w="160">Farbe: weiß</comment>
                                 <value name="VALUE">
                                   <block type="math_number" id="2DgM3?]}%T^ILwz6r9`+">
                                     <field name="NUM">2</field>
                                   </block>
                                 </value>
                                 <next>
                                   <block type="comment" id="QjEKj%j#6)]ynZPJ[Mp~">
                                     <field name="COMMENT">Weiß</field>
                                     <next>
                                       <block type="control" id="ns9A[v|DyU]vESyX3Lmg">
                                         <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                         <field name="OID">wled.0.fcb467c88924.ps</field>
                                         <field name="WITH_DELAY">TRUE</field>
                                         <field name="DELAY_MS">3</field>
                                         <field name="UNIT">sec</field>
                                         <field name="CLEAR_RUNNING">FALSE</field>
                                         <comment pinned="false" h="80" w="160">Farbe: weiß</comment>
                                         <value name="VALUE">
                                           <block type="math_number" id=",U,;e+[Vazg5rzd:CjSg">
                                             <field name="NUM">3</field>
                                           </block>
                                         </value>
                                         <next>
                                           <block type="comment" id="4`1,nd!?rDaG}M]Rm1^j">
                                             <field name="COMMENT">Weiß Spots</field>
                                             <next>
                                               <block type="control" id="}AW):LqtQ#$[w-SJA2^0">
                                                 <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                                 <field name="OID">wled.0.fcb467c88924.ps</field>
                                                 <field name="WITH_DELAY">TRUE</field>
                                                 <field name="DELAY_MS">6</field>
                                                 <field name="UNIT">sec</field>
                                                 <field name="CLEAR_RUNNING">FALSE</field>
                                                 <comment pinned="false" h="80" w="160">Farbe: weiß</comment>
                                                 <value name="VALUE">
                                                   <block type="math_number" id="BXe^4^;_M6@2[*4+)_$N">
                                                     <field name="NUM">4</field>
                                                   </block>
                                                 </value>
                                                 <next>
                                                   <block type="control" id="L!~i[I{N[*?PlY.-M:p]">
                                                     <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                                     <field name="OID">wled.0.fcb467c88924.on</field>
                                                     <field name="WITH_DELAY">TRUE</field>
                                                     <field name="DELAY_MS">20</field>
                                                     <field name="UNIT">sec</field>
                                                     <field name="CLEAR_RUNNING">FALSE</field>
                                                     <value name="VALUE">
                                                       <block type="logic_boolean" id="AO)0r`5z9)G~:k3WYwxv">
                                                         <field name="BOOL">FALSE</field>
                                                       </block>
                                                     </value>
                                                   </block>
                                                 </next>
                                               </block>
                                             </next>
                                           </block>
                                         </next>
                                       </block>
                                     </next>
                                   </block>
                                 </next>
                               </block>
                             </next>
                           </block>
                         </statement>
                       </block>
                     </next>
                   </block>
                 </next>
               </block>
             </statement>
           </block>
         </next>
       </block>
      </xml>
      

      Bei deinem blockly:

      1. Drei mal der selbe triggern macht man nicht.
      2. Wie wird das wled ausgeschaltet? Wenn du wled benutzt gibt es doch einen true/ false datenpunkt (z.b. mit cod-m)
      3. Isopen sind das kontaktschalter? Wo sitzen diese?
      posted in Blockly
      J
      jwerlsdf
    • RE: Test Adapter doorio v2.1.2

      Hallo,
      würde mir bitte jemand noch einmal die benötigte Hardwareliste zukommen lassen? Leider sind die links beim Hardware link alle nicht mehr erreichbar. Das wäre sehr nett. Vielen Dank im Voraus.

      posted in Tester
      J
      jwerlsdf
    • RE: Widget "basic bulb (on/off)" Soll >10 == an

      @homoran
      Als ich meine vis weiter umgebaut habe.... Hab sie nicht explizit hier gestellt 😊

      posted in Visualisierung
      J
      jwerlsdf
    • RE: Widget "basic bulb (on/off)" Soll >10 == an

      @marv21 wie hast du es denn gelöst? Hatte vor ein paar Tagen die selbe Frage gehabt...

      posted in Visualisierung
      J
      jwerlsdf
    • RE: VIS Instance ID wird nicht erstellt

      @homoran
      Perfekt. Damit konnte ich die instance id erzeugen und nun geht es wieder. Danke!

      posted in Visualisierung
      J
      jwerlsdf
    • RE: VIS Instance ID wird nicht erstellt

      @arteck welches widget ist das?

      posted in Visualisierung
      J
      jwerlsdf
    • RE: VIS Instance ID wird nicht erstellt

      Mmh... das ist etwas unbefriedigend. Ich meine früher ging das mal. Hatte in meinen alten Einstellungen das auch mal aktiviert gehabt. Der Befehl FFFFFF geht ja auch. Aber ich brauche es leider nicht auf beiden tablets....

      posted in Visualisierung
      J
      jwerlsdf
    • RE: VIS Instance ID wird nicht erstellt

      hallo,
      ich habe gleiches Problem. Ich benutze Fully. Über den Kiosk Modus bekomme ich den Fehler "notdefined" unter VIS control instance. Wenn ich den Fully schließe und über den Webbrowser die VIS1 öffne, bekomme ich eine ID 8-8XXXXX. Starte ich nun wieder Fully im Kiosk-Modus funktioniert diese ID nicht mehr. Umgedreht geht es aber im Browser-Modus (Chrome). Hat jemand eine Idee?

      posted in Visualisierung
      J
      jwerlsdf
    • RE: Homematic IP Wand und Heizkörperthermostate

      @paul53 said in Homematic IP Wand und Heizkörperthermostate:

      Die Reaktion auf den Fensterkontakt kann man vereinfachen (nur ein Trigger!):

      Stimmt. Habe ich entsprechend geändert.

      "Ist die Gruppe nicht ein virtuelles Device unter einer eigenen HM-RPC-Instanz?"
      Habe ich leider nicht gefunden. Aber passt schon. So funktioniert es nun wenigstens.

      posted in Blockly
      J
      jwerlsdf
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo