Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Praktische Anwendungen (Showcase)
    4. ESP Matrix Anzeige fully IoBroker steuerbar

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    ESP Matrix Anzeige fully IoBroker steuerbar

    This topic has been deleted. Only users with topic management privileges can see it.
    • liv-in-sky
      liv-in-sky @Steff123 last edited by

      @steff123 verstehe frage nicht

      1 Reply Last reply Reply Quote 0
      • liv-in-sky
        liv-in-sky @Steff123 last edited by

        @steff123 was auch noch wichtig ist: die 5V für die matrix sollte nichte vom wemos kommen - du solltest +5V und 0V parallel an den wemos und die matrix anschliessen - nicht die +5V vom wemos-pin nehmen !!!

        S 1 Reply Last reply Reply Quote 0
        • S
          Steff123 @liv-in-sky last edited by

          @liv-in-sky muss da iobroker ip und der port von simple adapter stehen oder nur ip

          liv-in-sky 2 Replies Last reply Reply Quote 0
          • liv-in-sky
            liv-in-sky @Steff123 last edited by

            @steff123 ip mit port !!!

            1 Reply Last reply Reply Quote 0
            • liv-in-sky
              liv-in-sky @Steff123 last edited by liv-in-sky

              @steff123

              http://192.168.xxx.xxx:port/getPlainValue/control-own.0.ESPMatrix.Matrix

              deine ip mit port und dein datenpunkt -

              scheint in github falsch zu sein

              (habe es jetzt auf github geändert)

              S 1 Reply Last reply Reply Quote 0
              • S
                Steff123 @liv-in-sky last edited by

                @liv-in-sky muss da display angeschlosen sein?

                liv-in-sky 1 Reply Last reply Reply Quote 0
                • liv-in-sky
                  liv-in-sky @Steff123 last edited by

                  @steff123

                  ich glaube nicht - du kannst in arduino den seriellen monitor anschliessen und nachsehen, was das log sagt, wenn die matrix nicht angeschlossen ist

                  1 Reply Last reply Reply Quote 0
                  • S
                    Spike08122 last edited by

                    Hallo Zusammen,

                    ich habe das Projekt mit der LED Matrix auch nachgebaut und bin begeistert. Ich fand es allerdings (für mich) etwas umständlich die Datenpunkte die übertragen werden soll über das Skript zu aktualisieren. Ich nutze nur den Teil des Skript der die Daten pusht. Für das Befüllen des Datenpunktes nutze ich ein Blockly, das ist, wie ich, finde etwas einfacher anzupassen.

                    //##################################
                    // ioBroker Matrix-Laufschrift
                    //##################################
                    
                    
                    //________________________________________________________________
                    //Script jede 45te Sekunde ausfuehren
                    schedule('45 * * * * *', Laufschrift_Aktualisieren);
                    //________________________________________________________________
                    
                     //Laufschrift_Aktualisieren();  // nur! wenn manuell getestet werden soll
                    
                    
                    function Laufschrift_Aktualisieren() {
                    
                    //______________________________________________________________________________________  
                    
                        //Wemos IP-Adresse
                        var udpIP = '192.168.178.119'                            // IP-Adresse des Wemos, bzw. der DOT Matrix Laufschrift
                    
                        //Ausgabe-Datenpunkt
                        var ausgabe_datenpunkt  = 'javascript.0.Laufschrift';   // Ausgabe-Datenpunkt muss mit der URL im Arduino-Sketch des Wemos übereinstimmen!
                    
                    
                    /*
                    // Nur zur Info Sonderzeichen:
                    
                    $ = degC
                    - = line
                        = plus
                    _ = rechteck-block
                    ! = ü
                    ? = ö
                    ^ = ä
                    ` = ß
                    */
                    
                    
                    //______________________________________________________________________________________
                    
                        // "update" an WEMOS senden (pushen), damit dort die Laufschrift sofort aktualisiert wird
                        const dgram = require('dgram');
                        var udpPort = 6610
                        var udpMessage = "update"
                        var client = dgram.createSocket('udp4');
                        client.send(udpMessage, 0, udpMessage.length, udpPort, udpIP, function(err, bytes) {
                            if (err) throw err;
                            client.close();
                        })
                    //______________________________________________________________________________________
                    
                    
                    }  //Ende function Laufschrift_Aktualisieren
                    
                    
                    

                    Kann man den Teil, in dem die Daten gepusht werden auch über Blockly realisieren? Der einzige Nachteil von meiner Methode ist, dass ich immer erst auf das pushen warten muss, obwohl der Datenpunkt schon aktualisiert ist.

                    Gruß

                    Spike

                    joergeli 1 Reply Last reply Reply Quote 0
                    • joergeli
                      joergeli @Spike08122 last edited by joergeli

                      @spike08122
                      Wenn man nur einen einzigen Wert im Datenpunkt hat, könnte man natürlich gleich bei Änderung dieses Wertes triggern, bzw. pushen. Dann könnte man aber auch gleich eine statische Matrix verwenden
                      (bei Blockly bin ich aber raus 😞 )

                      Hier ist es aber so, daß sich der Datenpunkt ja aus mehreren Werten zusammensetzt, in meinem Beispiel so;

                      var ausgabe     =  Service + DutyCycle + Badezimmer +  tf_aussen +  tf_wohnzimmer +  tf_keller  + druck_wind + GelbSackMorgen + GelbSackHeute + BioMuellHeute + BioMuellMorgen + PapierHeute + PapierMorgen + RestMuellHeute + RestMuellMorgen + open_windows
                      

                      Bei Änderung welchen Wertes soll hier nun getriggered/gepushed werden?
                      Außerdem musst Du bedenken, daß es ja eine gewisse Weile dauert, bis der Zyklus, d.h. die Anzeige aller Werte auf der Laufschrift ein Mal durchgelaufen ist ( bei mir hatte ich willkürlich das Push-Intervall auf 45 Sekunden gesetzt.)
                      Wenn man z.B. das Push-Intervall auf z.B. 5 Sekunden heruntersetzen würde, würden immer nur die ersten Werte angezeigt werden, die restlichen würden nie angezeigt, da der Zyklus der Laufschrift schon nach 5 Sek.neu startet.

                      1 Reply Last reply Reply Quote 0
                      • S
                        Spike08122 last edited by

                        @joergeli Danke für die schnelle Antwort. Das Zeitproblem verstehe ich. Da es bei mir etwas weniger Daten sind, könnte ich diese Aktualisierungszeit sicher etwas runtersetzten.

                        Ich habe es ähnlich, wie Du mit der Toilette eingerichtet. Wenn bei mir das Badfenster geöffnet ist, wird nur der Zustand "Badfenster ist offen" angezeigt. Wenn das Badfenster geschlossen wird, dann ist die Aktualisierung natürlich entsprechend verzögert.

                        Könnte man das phuschen der Daten zum ESO durch die Änderung des Datenpunktes "javascript.0.Laufschrift" auslösen lassen. Der Datenpunkt, wird ja bei mir separat befüllt und es ist nur ein einzelner Datenpunkt?

                        joergeli 1 Reply Last reply Reply Quote 0
                        • joergeli
                          joergeli @Spike08122 last edited by

                          @spike08122 sagte in ESP Matrix Anzeige fully IoBroker steuerbar:

                          Ich habe es ähnlich, wie Du mit der Toilette eingerichtet. Wenn bei mir das Badfenster geöffnet ist, wird nur der Zustand "Badfenster ist offen" angezeigt. Wenn das Badfenster geschlossen wird, dann ist die Aktualisierung natürlich entsprechend verzögert.
                          Könnte man das phuschen der Daten zum ESO durch die Änderung des Datenpunktes "javascript.0.Laufschrift" auslösen lassen. Der Datenpunkt, wird ja bei mir separat befüllt und es ist nur ein einzelner Datenpunkt?

                          Wenn bei Dir der Datenpunkt "javascript.0.Laufschrift" nur einen einzelnen Wert enthält, könnte man natürlich die Änderung dieses Wertes als Trigger nehmen.

                          Ansonsten sehe ich bei mehreren Werten im Datenpunkt keine Möglichkeit, die Anzeige schneller zu aktualisieren, außer die Aktualisierungszeit zu verkürzen - da muss man halt testen, wie kurz die Zeit sein kann, damit auch die "hinteren" Werte noch angezeigt werden.

                          Ist natürlich blöd, wenn's jemandem pressiert, schnell auf die Toilette zu kommen - da könnten 10 Sek. schon entscheidend sein 😰

                          Wenn es Dir auf eine quasi Echtzeitanzeige eines Zustandes ankommt, wäre evtl. ein LED Statusdisplay etwas für Dich?
                          Da können mittels farbigen LEDs insgesamt 32 Zustände visualisiert werden.
                          Ist im Prinzip das Gleiche, wie die Laufschrift, nur daß hier insgesamt 32 Datenpunkte verwendet werden.
                          Wenn sich hier einer der Datenpunkte ändert, werden sofort - via MQTT - alle LEDs aktualisiert.

                          1 Reply Last reply Reply Quote 0
                          • S
                            Spike08122 last edited by

                            @joergeli Alles klar, dann das Statusdisplay schau mir mal in Ruhe an, danke für den Tipp. Und beim Matrix, werd ich halt noch n bisschen rumprobieren. 😊 😊

                            joergeli 1 Reply Last reply Reply Quote 0
                            • S
                              Steff123 last edited by

                              Hallo was muss man bei den Datenpunkt MatrixMode nehmen auch Zeichenkette

                              liv-in-sky 1 Reply Last reply Reply Quote 0
                              • liv-in-sky
                                liv-in-sky @Steff123 last edited by liv-in-sky

                                @steff123 kommt darauf an, wie du den MatrixSetting datenpunkt in deinem script zusammenstellst - am ende muss ja eine zeichenkette rauskommen, die den mode-dp enthält

                                ich habe zeichenkette

                                nimmst du zahl musst du konvrtieren, wenn due den MatrixSetting "addierst"

                                setze bitte mein alias @liv-in-sky in deine nachfragen im forum - dann werd ich informiert, dass du was von mir willst

                                S 1 Reply Last reply Reply Quote 0
                                • S
                                  Steff123 @liv-in-sky last edited by

                                  @liv-in-sky Hallo wollte dich fragen ob du ein Script benutzt wenn ja wäre es möglich das du mir zu verfügung stellst ?
                                  Danke

                                  liv-in-sky 1 Reply Last reply Reply Quote 0
                                  • liv-in-sky
                                    liv-in-sky @Steff123 last edited by liv-in-sky

                                    @steff123 das ist sehr individuell - ich habe mir extra alarme definiert - d.h. es gibt eine normale anzeige, die immer bestimmte werte anzeigt. wird eine meiner alarm-routinen ausgelöst, wird für die zeit, bis de alarm zu ende ist, etwa anderes angezeigt
                                    es gibt aber auch alarme, die zu der normalen anzeige hinzugefügt wird. das alles zu erklären, ist mir zu lang.

                                    das hier ist das main-blockly, welches meine standards abfrägt und die message erzeugt

                                    <block xmlns="https://developers.google.com/blockly/xml" type="on_ext" id="dk|VCYqRr8S,6ieyZ5jR" x="1013" y="-513">
                                     <mutation xmlns="http://www.w3.org/1999/xhtml" items="11"></mutation>
                                     <field name="CONDITION">ne</field>
                                     <field name="ACK_CONDITION"></field>
                                     <value name="OID0">
                                       <shadow type="field_oid" id="A`ei+v+aT@^@3`9vWdYw">
                                         <field name="oid">controll-own.0.HANDY.SenderNr</field>
                                       </shadow>
                                     </value>
                                     <value name="OID1">
                                       <shadow type="field_oid" id="CXxpH,c`/uZD8=h(Rje@">
                                         <field name="oid">sonoff.0.Sonoff15.AM2301_Temperature</field>
                                       </shadow>
                                     </value>
                                     <value name="OID2">
                                       <shadow type="field_oid" id=":12iA3Pmd*|.b7%+4G~{">
                                         <field name="oid">controll-own.0.MATRIX.AlarmModeMatrix</field>
                                       </shadow>
                                     </value>
                                     <value name="OID3">
                                       <shadow type="field_oid" id="?[PL{9S#}F=sDiQ|n2Se">
                                         <field name="oid">controll-own.0.INFRAROT.InfrarotBad</field>
                                       </shadow>
                                     </value>
                                     <value name="OID4">
                                       <shadow type="field_oid" id="Po~E(EcBqTwq~nXW9)iq">
                                         <field name="oid">controll-own.0.INFRAROT.InfrarotZimmer</field>
                                       </shadow>
                                     </value>
                                     <value name="OID5">
                                       <shadow type="field_oid" id="][Sx3(#w[aQrXH[g[xQe">
                                         <field name="oid">alias.0.Bad.Heizung.Target</field>
                                       </shadow>
                                     </value>
                                     <value name="OID6">
                                       <shadow type="field_oid" id="?Izmxubtep5nDtA}eX)B">
                                         <field name="oid">alias.0.Zimmer.Heizung.Target</field>
                                       </shadow>
                                     </value>
                                     <value name="OID7">
                                       <shadow type="field_oid" id="w}~{BC/1l/mXRgZJ#N3%">
                                         <field name="oid">controll-own.0.RADIOs.RockAntenneTitle</field>
                                       </shadow>
                                     </value>
                                     <value name="OID8">
                                       <shadow type="field_oid" id="o;xf,](}8[68h*r/:7-q">
                                         <field name="oid">controll-own.0.INFRAROT.InfrarotZimmer</field>
                                       </shadow>
                                     </value>
                                     <value name="OID9">
                                       <shadow type="field_oid" id="DVSD|z$a]@#y{(}7|Sg.">
                                         <field name="oid">javascript.0.Status.Speed-Test.data.speeds.download</field>
                                       </shadow>
                                     </value>
                                     <value name="OID10">
                                       <shadow type="field_oid" id="bnklE2oc:3t4KnGRu-A(">
                                         <field name="oid">0_userdata.0.Tabellen.IcalTerminNext</field>
                                       </shadow>
                                     </value>
                                     <statement name="STATEMENT">
                                       <block type="timeouts_cleartimeout" id="e{PWpwqZB;}cgzW;vm%m">
                                         <field name="NAME">timeout9</field>
                                         <next>
                                           <block type="timeouts_cleartimeout" id="#OeB70EtCC{PAr|nk8[z">
                                             <field name="NAME">timeout9</field>
                                             <next>
                                               <block type="timeouts_settimeout" id="%O*O%Rne,R}KzbknKgBF">
                                                 <field name="NAME">timeout8</field>
                                                 <field name="DELAY">200</field>
                                                 <field name="UNIT">ms</field>
                                                 <statement name="STATEMENT">
                                                   <block type="controls_if" id="tZt0RGz.5uJ_9P5[i=]/">
                                                     <value name="IF0">
                                                       <block type="logic_operation" id="bQRhblCpV/qZR%kSaD*@">
                                                         <field name="OP">OR</field>
                                                         <value name="A">
                                                           <block type="logic_compare" id="mx(rjgB39C[X]?Ez|u!4">
                                                             <field name="OP">EQ</field>
                                                             <value name="A">
                                                               <block type="get_value" id="B?7?#q2PRG6bxX@/ceb7">
                                                                 <field name="ATTR">val</field>
                                                                 <field name="OID">controll-own.0.MATRIX.AlarmModeMatrix</field>
                                                               </block>
                                                             </value>
                                                             <value name="B">
                                                               <block type="text" id="Qd[Y=I8SBjO7z!g4;cLE">
                                                                 <field name="TEXT">0</field>
                                                               </block>
                                                             </value>
                                                           </block>
                                                         </value>
                                                         <value name="B">
                                                           <block type="logic_compare" id="nh^3hBbxmAzFx2_L(lrR">
                                                             <field name="OP">EQ</field>
                                                             <value name="A">
                                                               <block type="get_value" id="2gL!CaVLL/B=NbGPF(D1">
                                                                 <field name="ATTR">val</field>
                                                                 <field name="OID">controll-own.0.MATRIX.AlarmModeMatrix</field>
                                                               </block>
                                                             </value>
                                                             <value name="B">
                                                               <block type="text" id="6Dw)@-]`NtFE;tR_2H:t">
                                                                 <field name="TEXT">1</field>
                                                               </block>
                                                             </value>
                                                           </block>
                                                         </value>
                                                       </block>
                                                     </value>
                                                     <statement name="DO0">
                                                       <block type="variables_set" id="x?OXJM[0hipvoQ{=pH8K">
                                                         <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                         <value name="VALUE">
                                                           <block type="text" id="=SGjEFcd,XxS1%TS?wZo">
                                                             <field name="TEXT"></field>
                                                           </block>
                                                         </value>
                                                         <next>
                                                           <block type="variables_set" id="jLbW9%C0V%+iX@kg7!4H">
                                                             <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                             <value name="VALUE">
                                                               <block type="text_join" id="XTJ+}9*wSxkZ`2b3#OIb">
                                                                 <mutation items="5"></mutation>
                                                                 <value name="ADD0">
                                                                   <block type="text" id="S@PwI@wzJBgwREA@Yo}0">
                                                                     <field name="TEXT"></field>
                                                                   </block>
                                                                 </value>
                                                                 <value name="ADD1">
                                                                   <block type="math_round" id="{eYN-b5jqDZ#x!W7`S)s">
                                                                     <field name="OP">ROUND</field>
                                                                     <value name="NUM">
                                                                       <shadow xmlns="http://www.w3.org/1999/xhtml" type="math_number" id="r-gLMgmXwbVm`AAgQ7DV">
                                                                         <field name="NUM">3.1</field>
                                                                       </shadow>
                                                                       <block type="get_value" id="*eE-q8Z%o%kBJ(pIgxtb">
                                                                         <field name="ATTR">val</field>
                                                                         <field name="OID">alias.0.Allgemein.Aussentemperatur.Temperatur</field>
                                                                       </block>
                                                                     </value>
                                                                   </block>
                                                                 </value>
                                                                 <value name="ADD2">
                                                                   <block type="text" id="rj~O:f_(u#M(rAQ+CMnI">
                                                                     <field name="TEXT"> °C  </field>
                                                                   </block>
                                                                 </value>
                                                                 <value name="ADD3">
                                                                   <block type="procedures_callcustomreturn" id="N%Pz2^U_?mchlEwd`d7R">
                                                                     <mutation name="etwas tun2"></mutation>
                                                                   </block>
                                                                 </value>
                                                                 <value name="ADD4">
                                                                   <block type="text" id="^kfYvz(kPCP[GL47O,+C">
                                                                     <field name="TEXT">;</field>
                                                                   </block>
                                                                 </value>
                                                               </block>
                                                             </value>
                                                             <next>
                                                               <block type="timeouts_settimeout" id="OWYa)A-2@J~eay18yVdY">
                                                                 <field name="NAME">timeout10</field>
                                                                 <field name="DELAY">350</field>
                                                                 <field name="UNIT">ms</field>
                                                                 <statement name="STATEMENT">
                                                                   <block type="controls_if" id="SbT.9B2M)NDCJsI:xwBN">
                                                                     <value name="IF0">
                                                                       <block type="logic_operation" id="JJiD#G4RQoXb,*U6dMFQ" inline="false">
                                                                         <field name="OP">OR</field>
                                                                         <value name="A">
                                                                           <block type="logic_compare" id="E8)?Be8CrOY^TS4`SP2%">
                                                                             <field name="OP">GT</field>
                                                                             <value name="A">
                                                                               <block type="get_value" id="tHL~g1q-NJs%wmaIR92[">
                                                                                 <field name="ATTR">val</field>
                                                                                 <field name="OID">alias.0.Bad.Heizung.Target</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="B">
                                                                               <block type="math_number" id="IU)G2N-`h,b-l%nc2Wme">
                                                                                 <field name="NUM">22</field>
                                                                               </block>
                                                                             </value>
                                                                           </block>
                                                                         </value>
                                                                         <value name="B">
                                                                           <block type="logic_operation" id="leeyRWWqmX^l@[}pmYA*" inline="false">
                                                                             <field name="OP">OR</field>
                                                                             <value name="A">
                                                                               <block type="logic_compare" id="t/t.%5~KfHjcTHLlA}`%">
                                                                                 <field name="OP">GT</field>
                                                                                 <value name="A">
                                                                                   <block type="get_value" id="9@#cEf7+.j_}T{7@%@j0">
                                                                                     <field name="ATTR">val</field>
                                                                                     <field name="OID">alias.0.Flur.Heizung.Target</field>
                                                                                   </block>
                                                                                 </value>
                                                                                 <value name="B">
                                                                                   <block type="math_number" id="4GY)]@kme1*}HQ8_Z;@G">
                                                                                     <field name="NUM">22</field>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </value>
                                                                             <value name="B">
                                                                               <block type="logic_operation" id="3t8;`qG^az-^8L0A7aCv" inline="false">
                                                                                 <field name="OP">OR</field>
                                                                                 <value name="A">
                                                                                   <block type="logic_compare" id="1%0?ulL;ZjTEiwX{da;{">
                                                                                     <field name="OP">GT</field>
                                                                                     <value name="A">
                                                                                       <block type="get_value" id="Jz_I_w9YJg3E[f)Aa=@J">
                                                                                         <field name="ATTR">val</field>
                                                                                         <field name="OID">alias.0.Kueche.Heizung.Target</field>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="B">
                                                                                       <block type="math_number" id="p:]lU[^W;A0j`u^b2DZG">
                                                                                         <field name="NUM">22</field>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </value>
                                                                                 <value name="B">
                                                                                   <block type="logic_operation" id="6ALF8m9hhSb.47;GsM*p" inline="false">
                                                                                     <field name="OP">OR</field>
                                                                                     <value name="A">
                                                                                       <block type="logic_compare" id="cxv:M]h3KPn3@vnesPRQ">
                                                                                         <field name="OP">GT</field>
                                                                                         <value name="A">
                                                                                           <block type="get_value" id="[HYY^a5@sF*#_3VP:U+:">
                                                                                             <field name="ATTR">val</field>
                                                                                             <field name="OID">alias.0.Zimmer.Heizung.Target</field>
                                                                                           </block>
                                                                                         </value>
                                                                                         <value name="B">
                                                                                           <block type="math_number" id="Xng[wLlt-=@_yT`O9Dfo">
                                                                                             <field name="NUM">22</field>
                                                                                           </block>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="B">
                                                                                       <block type="logic_operation" id="RX:By(7BZ,XJUhuHcb0]" inline="false">
                                                                                         <field name="OP">OR</field>
                                                                                         <value name="A">
                                                                                           <block type="logic_compare" id="x)_C6fRp_%e{7yZx-=FV">
                                                                                             <field name="OP">EQ</field>
                                                                                             <value name="A">
                                                                                               <block type="get_value" id="JfL+z~Ckw-]}2{d,UxDZ">
                                                                                                 <field name="ATTR">val</field>
                                                                                                 <field name="OID">controll-own.0.INFRAROT.InfrarotBad</field>
                                                                                               </block>
                                                                                             </value>
                                                                                             <value name="B">
                                                                                               <block type="logic_boolean" id="L_Tws]m7{bjkO8K.04O.">
                                                                                                 <field name="BOOL">TRUE</field>
                                                                                               </block>
                                                                                             </value>
                                                                                           </block>
                                                                                         </value>
                                                                                         <value name="B">
                                                                                           <block type="logic_compare" id="/PYhk{@^d^#z4{xZGxG=">
                                                                                             <field name="OP">EQ</field>
                                                                                             <value name="A">
                                                                                               <block type="get_value" id="KOyKk55A_HzHfNnVKd^[">
                                                                                                 <field name="ATTR">val</field>
                                                                                                 <field name="OID">controll-own.0.INFRAROT.InfrarotZimmer</field>
                                                                                               </block>
                                                                                             </value>
                                                                                             <value name="B">
                                                                                               <block type="logic_boolean" id="WcZUsh?G5K*)+zM41t_Q">
                                                                                                 <field name="BOOL">TRUE</field>
                                                                                               </block>
                                                                                             </value>
                                                                                           </block>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </value>
                                                                           </block>
                                                                         </value>
                                                                       </block>
                                                                     </value>
                                                                     <statement name="DO0">
                                                                       <block type="variables_set" id="[H?4G]5I{ysI,I]7N%}x">
                                                                         <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                         <value name="VALUE">
                                                                           <block type="text_join" id="LpVs5-?kopApod!7Xf?s">
                                                                             <mutation items="9"></mutation>
                                                                             <value name="ADD0">
                                                                               <block type="variables_get" id=";|griG-qIEA{Md~5Y_%Q">
                                                                                 <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD1">
                                                                               <block type="get_value" id="sd:X`/Ds+=O`bdC/gUiq">
                                                                                 <field name="ATTR">val</field>
                                                                                 <field name="OID">alias.0.Zimmer.Heizung.Target</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD2">
                                                                               <block type="text" id="0jO)!fV/G6r!JUH(kra/">
                                                                                 <field name="TEXT">-</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD3">
                                                                               <block type="get_value" id="g/;LWazB_9rR(jgwbxLj">
                                                                                 <field name="ATTR">val</field>
                                                                                 <field name="OID">alias.0.Kueche.Heizung.Target</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD4">
                                                                               <block type="text" id="[YPu*eCr6R7--.;dI1PU">
                                                                                 <field name="TEXT">-</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD5">
                                                                               <block type="get_value" id="~[TKfgT}4XBooH|M3xYJ">
                                                                                 <field name="ATTR">val</field>
                                                                                 <field name="OID">alias.0.Flur.Heizung.Target</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD6">
                                                                               <block type="text" id="BVhRV1U:=`QZjmX)b_sP">
                                                                                 <field name="TEXT">-</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD7">
                                                                               <block type="get_value" id="G1-H`D4131{X9D`ZhJOh">
                                                                                 <field name="ATTR">val</field>
                                                                                 <field name="OID">alias.0.Bad.Heizung.Target</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD8">
                                                                               <block type="text" id="gkj!cwT(U(,!5pnX[kHE">
                                                                                 <field name="TEXT"> °C   </field>
                                                                               </block>
                                                                             </value>
                                                                           </block>
                                                                         </value>
                                                                         <next>
                                                                           <block type="controls_if" id=";H]w)V9=}t,i-tyq?wS]">
                                                                             <mutation else="1"></mutation>
                                                                             <value name="IF0">
                                                                               <block type="logic_compare" id="?9.{A6eSJcb#5Ocl#lRj">
                                                                                 <field name="OP">EQ</field>
                                                                                 <value name="A">
                                                                                   <block type="get_value" id="R5F=Af[=dXG6^Lf,!cGS">
                                                                                     <field name="ATTR">val</field>
                                                                                     <field name="OID">controll-own.0.INFRAROT.InfrarotZimmer</field>
                                                                                   </block>
                                                                                 </value>
                                                                                 <value name="B">
                                                                                   <block type="logic_boolean" id="8e~:aqlyn,KKb!9i]xf(">
                                                                                     <field name="BOOL">TRUE</field>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </value>
                                                                             <statement name="DO0">
                                                                               <block type="variables_set" id="=g?qh9Zq2gp(@jT:nCi2">
                                                                                 <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                 <value name="VALUE">
                                                                                   <block type="text_join" id="qxz[,Da{VmK@/C?]7n?,">
                                                                                     <mutation items="2"></mutation>
                                                                                     <value name="ADD0">
                                                                                       <block type="variables_get" id="`G`1C@]gQpZY%iR1kH*z">
                                                                                         <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="ADD1">
                                                                                       <block type="text" id="Di#|SS:Tfx#N=}-1?!Fg">
                                                                                         <field name="TEXT">#up </field>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </statement>
                                                                             <statement name="ELSE">
                                                                               <block type="variables_set" id="rZqegy0*?5(ruP39R_*p">
                                                                                 <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                 <value name="VALUE">
                                                                                   <block type="text_join" id="-3*U[1*2b/ke-jg?45,4">
                                                                                     <mutation items="2"></mutation>
                                                                                     <value name="ADD0">
                                                                                       <block type="variables_get" id="qyy`9zS88c:nHNA*Wk1S">
                                                                                         <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="ADD1">
                                                                                       <block type="text" id="dRDKrJZCZd.c?4d1[aA`">
                                                                                         <field name="TEXT">#down </field>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </statement>
                                                                             <next>
                                                                               <block type="controls_if" id="G@0(m8b_|`FJ3l!YY7/{">
                                                                                 <mutation else="1"></mutation>
                                                                                 <value name="IF0">
                                                                                   <block type="logic_compare" id="GKsFaT#8ZDMx4jWc11D7">
                                                                                     <field name="OP">EQ</field>
                                                                                     <value name="A">
                                                                                       <block type="get_value" id="=snwv+we]!wacOsz#t/-">
                                                                                         <field name="ATTR">val</field>
                                                                                         <field name="OID">controll-own.0.INFRAROT.InfrarotBad</field>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="B">
                                                                                       <block type="logic_boolean" id="5?EU4Wyh/bF2]ZY1ZxAq">
                                                                                         <field name="BOOL">TRUE</field>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </value>
                                                                                 <statement name="DO0">
                                                                                   <block type="variables_set" id="K?~H!`N3#[PrbB5ms^*_">
                                                                                     <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                     <value name="VALUE">
                                                                                       <block type="text_join" id="83O,3AJ!^}xSgS=o-}N.">
                                                                                         <mutation items="2"></mutation>
                                                                                         <value name="ADD0">
                                                                                           <block type="variables_get" id="JPs[BfL)^nZ6Q1%Jq:aI">
                                                                                             <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                           </block>
                                                                                         </value>
                                                                                         <value name="ADD1">
                                                                                           <block type="text" id="5Qj?wk5Ga.wI4k|V8HFa">
                                                                                             <field name="TEXT"> #up; </field>
                                                                                           </block>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </statement>
                                                                                 <statement name="ELSE">
                                                                                   <block type="variables_set" id="s0HJ[Uy5#52W~pQq#e{q">
                                                                                     <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                     <value name="VALUE">
                                                                                       <block type="text_join" id="tL|+^JOKLRQXMZ]`.,(L">
                                                                                         <mutation items="2"></mutation>
                                                                                         <value name="ADD0">
                                                                                           <block type="variables_get" id="/9QEJsPTWAuLQt`V!F)j">
                                                                                             <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                           </block>
                                                                                         </value>
                                                                                         <value name="ADD1">
                                                                                           <block type="text" id="-Dwg5qqI1kU.O@|:SRx-">
                                                                                             <field name="TEXT"> #down;</field>
                                                                                           </block>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </statement>
                                                                               </block>
                                                                             </next>
                                                                           </block>
                                                                         </next>
                                                                       </block>
                                                                     </statement>
                                                                     <next>
                                                                       <block type="controls_if" id="ts)ywqaX7_cS*X)Sx%b)">
                                                                         <value name="IF0">
                                                                           <block type="logic_operation" id="kdla=Eo4CphvAVD9%@{+">
                                                                             <field name="OP">AND</field>
                                                                             <value name="A">
                                                                               <block type="logic_compare" id="kn]W=_~%l(~}X6ar=8#g">
                                                                                 <field name="OP">EQ</field>
                                                                                 <value name="A">
                                                                                   <block type="get_value" id="D#Dr7U)w^,Mg4H5bQt/4">
                                                                                     <field name="ATTR">val</field>
                                                                                     <field name="OID">controll-own.0.Banane</field>
                                                                                   </block>
                                                                                 </value>
                                                                                 <value name="B">
                                                                                   <block type="logic_boolean" id="%4Hbz,|R%ljsPr||3-2[">
                                                                                     <field name="BOOL">TRUE</field>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </value>
                                                                             <value name="B">
                                                                               <block type="logic_compare" id="MYxr7#ROrrJ.`uVFCRQ|">
                                                                                 <field name="OP">EQ</field>
                                                                                 <value name="A">
                                                                                   <block type="get_value" id="HEV8cT~|8Q:|cseL`Lri">
                                                                                     <field name="ATTR">val</field>
                                                                                     <field name="OID">controll-own.0.TV</field>
                                                                                   </block>
                                                                                 </value>
                                                                                 <value name="B">
                                                                                   <block type="logic_boolean" id="c~_HUCuc]0=74TvA_|[#">
                                                                                     <field name="BOOL">FALSE</field>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </value>
                                                                           </block>
                                                                         </value>
                                                                         <statement name="DO0">
                                                                           <block type="variables_set" id="+xc,w#XxDgD`G.?Qa[~*">
                                                                             <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                             <value name="VALUE">
                                                                               <block type="text_join" id="0WNww)4^]%%Xp/e2IFw+">
                                                                                 <mutation items="3"></mutation>
                                                                                 <value name="ADD0">
                                                                                   <block type="variables_get" id="T|bx{G6+uk(fPs?Rc80J">
                                                                                     <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                   </block>
                                                                                 </value>
                                                                                 <value name="ADD1">
                                                                                   <block type="get_value" id="9Cqk1R]ZePxFRt9GfvCm">
                                                                                     <field name="ATTR">val</field>
                                                                                     <field name="OID">controll-own.0.MATRIX.RockAntenneTitelMatrix</field>
                                                                                   </block>
                                                                                 </value>
                                                                                 <value name="ADD2">
                                                                                   <block type="text" id="R6XlTq24jLuLrV;PMJrk">
                                                                                     <field name="TEXT">;</field>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </value>
                                                                           </block>
                                                                         </statement>
                                                                         <next>
                                                                           <block type="controls_if" id="p@k1=AIl7Zyx#_aCP9TD">
                                                                             <value name="IF0">
                                                                               <block type="logic_operation" id="pNo$Rz_1!Qko3afGW9OA" inline="false">
                                                                                 <field name="OP">AND</field>
                                                                                 <value name="A">
                                                                                   <block type="logic_operation" id="+2KfoO`eZLz788A-0pJm">
                                                                                     <field name="OP">AND</field>
                                                                                     <value name="A">
                                                                                       <block type="time_compare_ex" id="#t|t0*-vc*d)Qwdri}KK">
                                                                                         <mutation xmlns="http://www.w3.org/1999/xhtml" end_time="false" actual_time="true"></mutation>
                                                                                         <field name="USE_ACTUAL_TIME">TRUE</field>
                                                                                         <field name="OPTION">&gt;</field>
                                                                                         <value name="START_TIME">
                                                                                           <shadow type="text" id="0Os,D-B@Hw]v4yrVPW%x">
                                                                                             <field name="TEXT">18:00</field>
                                                                                           </shadow>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="B">
                                                                                       <block type="time_compare_ex" id="Ch,+1OWv9ddJ=jH?4~ZM">
                                                                                         <mutation xmlns="http://www.w3.org/1999/xhtml" end_time="false" actual_time="true"></mutation>
                                                                                         <field name="USE_ACTUAL_TIME">TRUE</field>
                                                                                         <field name="OPTION">&lt;</field>
                                                                                         <value name="START_TIME">
                                                                                           <shadow type="text" id="$@#${k5:pp3SX6qKz_hc">
                                                                                             <field name="TEXT">21:59</field>
                                                                                           </shadow>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </value>
                                                                                 <value name="B">
                                                                                   <block type="logic_compare" id="!zj)5T#F|/~?Sakm{yq+">
                                                                                     <field name="OP">LT</field>
                                                                                     <value name="A">
                                                                                       <block type="get_value" id="^PJfAGhTEQg]e?dGnTr=">
                                                                                         <field name="ATTR">val</field>
                                                                                         <field name="OID">alias.0.Allgemein.Internnet.Download</field>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="B">
                                                                                       <block type="math_number" id="#lYurO*PVQ]1]k-^2o[,">
                                                                                         <field name="NUM">60</field>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </value>
                                                                             <statement name="DO0">
                                                                               <block type="variables_set" id="6}0S6Hs.ZeScen!7PUYv">
                                                                                 <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                 <value name="VALUE">
                                                                                   <block type="text_join" id="QKUBZq2)W|)`/S%5.h`e">
                                                                                     <mutation items="5"></mutation>
                                                                                     <value name="ADD0">
                                                                                       <block type="variables_get" id=")I?xW}ipM4m-HjB1h=t-">
                                                                                         <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="ADD1">
                                                                                       <block type="math_round" id="m/19pPf3u*ei%=Q-wQH1">
                                                                                         <field name="OP">ROUNDDOWN</field>
                                                                                         <value name="NUM">
                                                                                           <shadow xmlns="http://www.w3.org/1999/xhtml" type="math_number" id="7]H,yv;FRMp}She1-NYz">
                                                                                             <field name="NUM">3.1</field>
                                                                                           </shadow>
                                                                                           <block type="get_value" id="k0o4Z?~^cY3u4}9u.Cdi">
                                                                                             <field name="ATTR">val</field>
                                                                                             <field name="OID">alias.0.Allgemein.Internnet.Download</field>
                                                                                           </block>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="ADD2">
                                                                                       <block type="text" id="t38B3kZ{?yY)uL}+MY5p">
                                                                                         <field name="TEXT"> #up  ---  #down </field>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="ADD3">
                                                                                       <block type="math_round" id="I7bOP_2dCvS#mefnNlwy">
                                                                                         <field name="OP">ROUNDDOWN</field>
                                                                                         <value name="NUM">
                                                                                           <shadow xmlns="http://www.w3.org/1999/xhtml" type="math_number" id="7]H,yv;FRMp}She1-NYz">
                                                                                             <field name="NUM">3.1</field>
                                                                                           </shadow>
                                                                                           <block type="get_value" id="wtYQ%Gr+zI2xx}X~l,h2">
                                                                                             <field name="ATTR">val</field>
                                                                                             <field name="OID">alias.0.Allgemein.Internnet.Upload</field>
                                                                                           </block>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="ADD4">
                                                                                       <block type="text" id="H}Gsyo]KX2:3;ilBFxup">
                                                                                         <field name="TEXT"> ;</field>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </value>
                                                                               </block>
                                                                             </statement>
                                                                             <next>
                                                                               <block type="controls_if" id="^EJi6m;I!}VV3mGbhrhG">
                                                                                 <value name="IF0">
                                                                                   <block type="logic_operation" id="G]^Bi2|bad!?SHOd-6b]">
                                                                                     <field name="OP">AND</field>
                                                                                     <value name="A">
                                                                                       <block type="time_compare_ex" id="`.nwMS_?1QS.Ij@u)PgM">
                                                                                         <mutation xmlns="http://www.w3.org/1999/xhtml" end_time="false" actual_time="true"></mutation>
                                                                                         <field name="USE_ACTUAL_TIME">TRUE</field>
                                                                                         <field name="OPTION">&gt;</field>
                                                                                         <value name="START_TIME">
                                                                                           <shadow type="text" id="@Qgzmv||tCu5ocJF~Qnu">
                                                                                             <field name="TEXT">10:00</field>
                                                                                           </shadow>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                     <value name="B">
                                                                                       <block type="time_compare_ex" id="p5+D0E.5J,pyM/HVxZh_">
                                                                                         <mutation xmlns="http://www.w3.org/1999/xhtml" end_time="false" actual_time="true"></mutation>
                                                                                         <field name="USE_ACTUAL_TIME">TRUE</field>
                                                                                         <field name="OPTION">&lt;</field>
                                                                                         <value name="START_TIME">
                                                                                           <shadow type="text" id="K*H4w5-{z7(?F^vQ@|jC">
                                                                                             <field name="TEXT">22:00</field>
                                                                                           </shadow>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                   </block>
                                                                                 </value>
                                                                                 <statement name="DO0">
                                                                                   <block type="controls_if" id="L]_0r_k@iM7:q1zZUG*/">
                                                                                     <value name="IF0">
                                                                                       <block type="logic_negate" id="6aTb]m)95{J@F,G?uFjB">
                                                                                         <value name="BOOL">
                                                                                           <block type="text_isEmpty" id="tT-w++I|ue(6]Jt`T@[t">
                                                                                             <value name="VALUE">
                                                                                               <shadow xmlns="http://www.w3.org/1999/xhtml" type="text" id="v/C(6vOa}lu7TNM{/pWq">
                                                                                                 <field name="TEXT"></field>
                                                                                               </shadow>
                                                                                               <block type="get_value" id="aV1Z4R6xBy5~W/;K~T/z">
                                                                                                 <field name="ATTR">val</field>
                                                                                                 <field name="OID">controll-own.0.MATRIX.IcalWertMatrix1</field>
                                                                                               </block>
                                                                                             </value>
                                                                                           </block>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                     <statement name="DO0">
                                                                                       <block type="variables_set" id="TL}Jd(mcH~0i]w/fcJ(N">
                                                                                         <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                         <value name="VALUE">
                                                                                           <block type="text_join" id="x+DcCpvXfV7^7*Tt%NZw">
                                                                                             <mutation items="3"></mutation>
                                                                                             <value name="ADD0">
                                                                                               <block type="variables_get" id="hY!v;3,|,9JNBhOx5*Ut">
                                                                                                 <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                               </block>
                                                                                             </value>
                                                                                             <value name="ADD1">
                                                                                               <block type="procedures_callcustomreturn" id="KQ.oj*.QpsIl$]w]Gka{">
                                                                                                 <mutation name="etwas tun"></mutation>
                                                                                               </block>
                                                                                             </value>
                                                                                             <value name="ADD2">
                                                                                               <block type="text" id="r};6./AY?2oa}#IgbkAI">
                                                                                                 <field name="TEXT"> ;</field>
                                                                                               </block>
                                                                                             </value>
                                                                                           </block>
                                                                                         </value>
                                                                                       </block>
                                                                                     </statement>
                                                                                   </block>
                                                                                 </statement>
                                                                                 <next>
                                                                                   <block type="controls_if" id="T,SJ2SzIy-bw=e]#w8jH">
                                                                                     <mutation else="1"></mutation>
                                                                                     <value name="IF0">
                                                                                       <block type="logic_compare" id="s)|742QH..Y+LqK0tq!C">
                                                                                         <field name="OP">EQ</field>
                                                                                         <value name="A">
                                                                                           <block type="get_value" id="r#K/ZUg9mT=5_cxgV:s`">
                                                                                             <field name="ATTR">val</field>
                                                                                             <field name="OID">controll-own.0.MATRIX.AlarmModeMatrix</field>
                                                                                           </block>
                                                                                         </value>
                                                                                         <value name="B">
                                                                                           <block type="text" id="n9OTYOc,3}I?mf5@t9:8">
                                                                                             <field name="TEXT">1</field>
                                                                                           </block>
                                                                                         </value>
                                                                                       </block>
                                                                                     </value>
                                                                                     <statement name="DO0">
                                                                                       <block type="variables_set" id="Jza?4TfulvuowuMA;90L">
                                                                                         <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                         <value name="VALUE">
                                                                                           <block type="text_join" id="z1?%q!{yM86XRX{.bNg~">
                                                                                             <mutation items="3"></mutation>
                                                                                             <value name="ADD0">
                                                                                               <block type="variables_get" id="G7Lx}g*~MM%M(G`?Y`F4">
                                                                                                 <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                               </block>
                                                                                             </value>
                                                                                             <value name="ADD1">
                                                                                               <block type="get_value" id="VPglXm/4JvX;|z9@30V`">
                                                                                                 <field name="ATTR">val</field>
                                                                                                 <field name="OID">controll-own.0.MATRIX.AlarmMatrix</field>
                                                                                               </block>
                                                                                             </value>
                                                                                             <value name="ADD2">
                                                                                               <block type="text" id="AssK~Xc03f?|4RcN*ZuP">
                                                                                                 <field name="TEXT"> ;</field>
                                                                                               </block>
                                                                                             </value>
                                                                                           </block>
                                                                                         </value>
                                                                                         <next>
                                                                                           <block type="control" id="H71-SYouo:,,(3GY%H7b">
                                                                                             <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                                                                             <field name="OID">controll-own.0.MATRIX.Matrix</field>
                                                                                             <field name="WITH_DELAY">TRUE</field>
                                                                                             <field name="DELAY_MS">100</field>
                                                                                             <field name="UNIT">ms</field>
                                                                                             <field name="CLEAR_RUNNING">FALSE</field>
                                                                                             <value name="VALUE">
                                                                                               <block type="text_getSubstring" id="_tSB;c:+HW^XREpYRO3.">
                                                                                                 <mutation at1="false" at2="true"></mutation>
                                                                                                 <field name="WHERE1">FIRST</field>
                                                                                                 <field name="WHERE2">FROM_START</field>
                                                                                                 <value name="STRING">
                                                                                                   <block type="variables_get" id="%DY+PoGJsJKAgTEmlGYs">
                                                                                                     <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                                   </block>
                                                                                                 </value>
                                                                                                 <value name="AT2">
                                                                                                   <block type="math_arithmetic" id=":tXEi]:FHf6oNjtw2m6m">
                                                                                                     <field name="OP">MINUS</field>
                                                                                                     <value name="A">
                                                                                                       <shadow xmlns="http://www.w3.org/1999/xhtml" type="math_number" id="m{?oMZC[x(-K2:qqd8~a">
                                                                                                         <field name="NUM">1</field>
                                                                                                       </shadow>
                                                                                                       <block type="text_indexOf" id=":O*w=%P.aD%x_?_/yzz7">
                                                                                                         <field name="END">LAST</field>
                                                                                                         <value name="VALUE">
                                                                                                           <block type="variables_get" id="7oY,!Tm?_P*nOJOIm^**">
                                                                                                             <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                                           </block>
                                                                                                         </value>
                                                                                                         <value name="FIND">
                                                                                                           <shadow type="text" id="U+jL6Vjpba8~BjH0]KJ~">
                                                                                                             <field name="TEXT">;</field>
                                                                                                           </shadow>
                                                                                                         </value>
                                                                                                       </block>
                                                                                                     </value>
                                                                                                     <value name="B">
                                                                                                       <shadow xmlns="http://www.w3.org/1999/xhtml" type="math_number" id="MtjCWfqJ5[Yt~wfsZ2=M">
                                                                                                         <field name="NUM">1</field>
                                                                                                       </shadow>
                                                                                                       <block type="math_number" id="p2{7z{w)sg[!:_j`d?k(">
                                                                                                         <field name="NUM">1</field>
                                                                                                       </block>
                                                                                                     </value>
                                                                                                   </block>
                                                                                                 </value>
                                                                                               </block>
                                                                                             </value>
                                                                                             <next>
                                                                                               <block type="timeouts_settimeout" id="LuqC0gxLHyJu!DfU~wF4" disabled="true">
                                                                                                 <field name="NAME">timeout3</field>
                                                                                                 <field name="DELAY">500</field>
                                                                                                 <field name="UNIT">ms</field>
                                                                                               </block>
                                                                                             </next>
                                                                                           </block>
                                                                                         </next>
                                                                                       </block>
                                                                                     </statement>
                                                                                     <statement name="ELSE">
                                                                                       <block type="control" id="U2~e|C;Y_!OF/{;|93FQ">
                                                                                         <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                                                                         <field name="OID">controll-own.0.MATRIX.Matrix</field>
                                                                                         <field name="WITH_DELAY">TRUE</field>
                                                                                         <field name="DELAY_MS">100</field>
                                                                                         <field name="UNIT">ms</field>
                                                                                         <field name="CLEAR_RUNNING">FALSE</field>
                                                                                         <value name="VALUE">
                                                                                           <block type="text_getSubstring" id="ofYB^{EUX+@CM|wIZtrA">
                                                                                             <mutation at1="false" at2="true"></mutation>
                                                                                             <field name="WHERE1">FIRST</field>
                                                                                             <field name="WHERE2">FROM_START</field>
                                                                                             <value name="STRING">
                                                                                               <block type="variables_get" id="feTc0M0/(3`o]8Z7Fn?;">
                                                                                                 <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                               </block>
                                                                                             </value>
                                                                                             <value name="AT2">
                                                                                               <block type="math_arithmetic" id="o^:_um3bE4b4OD:GV_T9">
                                                                                                 <field name="OP">MINUS</field>
                                                                                                 <value name="A">
                                                                                                   <shadow xmlns="http://www.w3.org/1999/xhtml" type="math_number" id="m{?oMZC[x(-K2:qqd8~a">
                                                                                                     <field name="NUM">1</field>
                                                                                                   </shadow>
                                                                                                   <block type="text_indexOf" id=",P;l,r`pUW*_CjI9w6ap">
                                                                                                     <field name="END">LAST</field>
                                                                                                     <value name="VALUE">
                                                                                                       <block type="variables_get" id="y^xcrw`omsSW.JN9:()T">
                                                                                                         <field name="VAR" id="Md$G0Q)lxJxOLYh07Ho-">toprint</field>
                                                                                                       </block>
                                                                                                     </value>
                                                                                                     <value name="FIND">
                                                                                                       <shadow type="text" id="pee}~1RfE8~ikE09(?Dr">
                                                                                                         <field name="TEXT">;</field>
                                                                                                       </shadow>
                                                                                                     </value>
                                                                                                   </block>
                                                                                                 </value>
                                                                                                 <value name="B">
                                                                                                   <shadow xmlns="http://www.w3.org/1999/xhtml" type="math_number" id="^28l}MiP|K*QU[tYK;T7">
                                                                                                     <field name="NUM">1</field>
                                                                                                   </shadow>
                                                                                                   <block type="math_number" id="+MnY?fK%rWCrAP*^-M_0">
                                                                                                     <field name="NUM">1</field>
                                                                                                   </block>
                                                                                                 </value>
                                                                                               </block>
                                                                                             </value>
                                                                                           </block>
                                                                                         </value>
                                                                                         <next>
                                                                                           <block type="comment" id="v6gE3EjQ1;/~~VmLC=z*">
                                                                                             <field name="COMMENT">matrix2 steuern</field>
                                                                                             <next>
                                                                                               <block type="control" id="SfGX-nm?m2;y6=lBr]u0" disabled="true">
                                                                                                 <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                                                                                 <field name="OID">controll-own.0.MATRIX2.Matrix</field>
                                                                                                 <field name="WITH_DELAY">TRUE</field>
                                                                                                 <field name="DELAY_MS">2</field>
                                                                                                 <field name="UNIT">sec</field>
                                                                                                 <field name="CLEAR_RUNNING">FALSE</field>
                                                                                                 <value name="VALUE">
                                                                                                   <block type="get_value" id="I}axFH0`B7=-ZzLqtz|w">
                                                                                                     <field name="ATTR">val</field>
                                                                                                     <field name="OID">controll-own.0.MATRIX.Matrix</field>
                                                                                                   </block>
                                                                                                 </value>
                                                                                               </block>
                                                                                             </next>
                                                                                           </block>
                                                                                         </next>
                                                                                       </block>
                                                                                     </statement>
                                                                                   </block>
                                                                                 </next>
                                                                               </block>
                                                                             </next>
                                                                           </block>
                                                                         </next>
                                                                       </block>
                                                                     </next>
                                                                   </block>
                                                                 </statement>
                                                               </block>
                                                             </next>
                                                           </block>
                                                         </next>
                                                       </block>
                                                     </statement>
                                                   </block>
                                                 </statement>
                                               </block>
                                             </next>
                                           </block>
                                         </next>
                                       </block>
                                     </statement>
                                    </block>
                                    

                                    das ist das blockly, welches die auf die einzelnen settings reagiert und das setting zusammenstellt

                                    <block xmlns="https://developers.google.com/blockly/xml" type="on_ext" id="o4/erpl488Yx@_;Fk?m1" x="-837" y="-410">
                                     <mutation xmlns="http://www.w3.org/1999/xhtml" items="7"></mutation>
                                     <field name="CONDITION">ne</field>
                                     <field name="ACK_CONDITION"></field>
                                     <value name="OID0">
                                       <shadow type="field_oid" id="`K!gv;gd;lCR:N1TdsS7">
                                         <field name="oid">controll-own.0.MATRIX.MatrixMode</field>
                                       </shadow>
                                     </value>
                                     <value name="OID1">
                                       <shadow type="field_oid" id="?@B8U`pG/g]9%}_9#NDB">
                                         <field name="oid">controll-own.0.MATRIX.MatrixIntensity</field>
                                       </shadow>
                                     </value>
                                     <value name="OID2">
                                       <shadow type="field_oid" id="F/Qfg~MVV4z)tu}HVC.V">
                                         <field name="oid">controll-own.0.MATRIX.MatrixRefreshTime</field>
                                       </shadow>
                                     </value>
                                     <value name="OID3">
                                       <shadow type="field_oid" id="l2yzwtRL%^p?W_sI]!Ai">
                                         <field name="oid">controll-own.0.MATRIX.MatrixScrollPause</field>
                                       </shadow>
                                     </value>
                                     <value name="OID4">
                                       <shadow type="field_oid" id="1hiSl3vo[T,mm3!OQrL}">
                                         <field name="oid">controll-own.0.MATRIX.MatrixScrollSpeed</field>
                                       </shadow>
                                     </value>
                                     <value name="OID5">
                                       <shadow type="field_oid" id="24r.e7Z|`w(A^7VEmYDJ">
                                         <field name="oid">controll-own.0.MATRIX.AlarmModeMatrix</field>
                                       </shadow>
                                     </value>
                                     <value name="OID6">
                                       <shadow type="field_oid" id="O2GpiydGp@m3XC+@1Nk^">
                                         <field name="oid">controll-own.0.MATRIX.AlarmMatrix</field>
                                       </shadow>
                                     </value>
                                     <statement name="STATEMENT">
                                       <block type="timeouts_settimeout" id="9{j;1=#tTWq=![^sCyyy">
                                         <field name="NAME">timeout4</field>
                                         <field name="DELAY">2</field>
                                         <field name="UNIT">sec</field>
                                         <statement name="STATEMENT">
                                           <block type="control" id="@a__I)AVsW[P;OEQ1zjs">
                                             <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                                             <field name="OID">controll-own.0.MATRIX.MatrixSetting</field>
                                             <field name="WITH_DELAY">FALSE</field>
                                             <value name="VALUE">
                                               <block type="text_join" id="BGvq2VBdsqey@!0Q?Vq-">
                                                 <mutation items="9"></mutation>
                                                 <value name="ADD0">
                                                   <block type="get_value" id="#0fp,;Q)[D54+cA#1aX%">
                                                     <field name="ATTR">val</field>
                                                     <field name="OID">controll-own.0.MATRIX.MatrixMode</field>
                                                   </block>
                                                 </value>
                                                 <value name="ADD1">
                                                   <block type="text" id="YiG.:*NDFJXJ#g~Cj|Tz">
                                                     <field name="TEXT">;</field>
                                                   </block>
                                                 </value>
                                                 <value name="ADD2">
                                                   <block type="get_value" id="!H}7~)kCxN[!tIm/k5@^">
                                                     <field name="ATTR">val</field>
                                                     <field name="OID">controll-own.0.MATRIX.MatrixIntensity</field>
                                                   </block>
                                                 </value>
                                                 <value name="ADD3">
                                                   <block type="text" id="AAT6sH@?{Xl%?bk8DR;,">
                                                     <field name="TEXT">;</field>
                                                   </block>
                                                 </value>
                                                 <value name="ADD4">
                                                   <block type="get_value" id="hrwqUA,/JMbWKDvpb%50">
                                                     <field name="ATTR">val</field>
                                                     <field name="OID">controll-own.0.MATRIX.MatrixRefreshTime</field>
                                                   </block>
                                                 </value>
                                                 <value name="ADD5">
                                                   <block type="text" id="SCqdff{#JWBO7`-u,VXv">
                                                     <field name="TEXT">;</field>
                                                   </block>
                                                 </value>
                                                 <value name="ADD6">
                                                   <block type="get_value" id="T8soJW9CCBLDqrF|AZQp">
                                                     <field name="ATTR">val</field>
                                                     <field name="OID">controll-own.0.MATRIX.MatrixScrollPause</field>
                                                   </block>
                                                 </value>
                                                 <value name="ADD7">
                                                   <block type="text" id="/jYogE=48p(tnp/}@,-L">
                                                     <field name="TEXT">;</field>
                                                   </block>
                                                 </value>
                                                 <value name="ADD8">
                                                   <block type="get_value" id="dNZU~MBi1C7~tdx3?v}_">
                                                     <field name="ATTR">val</field>
                                                     <field name="OID">controll-own.0.MATRIX.MatrixScrollSpeed</field>
                                                   </block>
                                                 </value>
                                               </block>
                                             </value>
                                             <next>
                                               <block type="control" id="`t3jLsf1@g!GB!YFVT!?" disabled="true">
                                                 <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="true"></mutation>
                                                 <field name="OID">controll-own.0.MATRIX2.MatrixSetting</field>
                                                 <field name="WITH_DELAY">TRUE</field>
                                                 <field name="DELAY_MS">4</field>
                                                 <field name="UNIT">sec</field>
                                                 <field name="CLEAR_RUNNING">FALSE</field>
                                                 <value name="VALUE">
                                                   <block type="get_value" id="eo;.vZy@XW!]m6b47{gD">
                                                     <field name="ATTR">val</field>
                                                     <field name="OID">controll-own.0.MATRIX.MatrixSetting</field>
                                                   </block>
                                                 </value>
                                                 <next>
                                                   <block type="debug" id=")eOoV^QpFiads0;%[/fd" disabled="true">
                                                     <field name="Severity">error</field>
                                                     <value name="TEXT">
                                                       <shadow type="text" id="GIMBTq[P)OI=Yok[a|-H">
                                                         <field name="TEXT">MODE GesamtSettings erstellen</field>
                                                       </shadow>
                                                     </value>
                                                   </block>
                                                 </next>
                                               </block>
                                             </next>
                                           </block>
                                         </statement>
                                       </block>
                                     </statement>
                                    </block>
                                    

                                    damit solltest du mal eine übersicht bekommen

                                    S 2 Replies Last reply Reply Quote 0
                                    • S
                                      Steff123 @liv-in-sky last edited by

                                      @liv-in-sky Danke echt super

                                      1 Reply Last reply Reply Quote 0
                                      • joergeli
                                        joergeli @Spike08122 last edited by

                                        @spike08122
                                        Hi,
                                        wo ich gerade das mit den Alarmen von @liv-in-sky lese:

                                        Ich priorisiere bei mir auch einige Werte, wie zB. "Post ist da", oder wenn " RaspberryMatic-Dutycicle 49%" übersteigt, d.h. bei Auftreten eines dieser Ereignisse, werden die restlichen Werte auf der Laufschrift unterdrückt.

                                            // Ausgabestring aus den EinzelStrings zusammensetzen:
                                            //_____________________________________________________
                                            // Wenn RaspberryMatic DutyCycle >= 49%, nur! den DutyCycle ausgeben.
                                            // Wenn Post da ist, nur! den "Post ist da-String" ausgeben, ggf. zusaetzlich den DutyCycle,
                                            // ansonsten komplette Ausgabe aller Variablen
                                        
                                            if (dutycycle >= 49) {
                                                var ausgabe     =  DutyCycle + PostIstDa
                                            }
                                        
                                            else if (post_ist_da == true) {
                                                var ausgabe     =  DutyCycle + PostIstDa
                                            }
                                        
                                            else{
                                            var ausgabe     =  Service + DutyCycle + Badezimmer +  tf_aussen +  tf_wohnzimmer +  tf_keller  + druck_wind + GelbSackMorgen + GelbSackHeute + BioMuellHeute + BioMuellMorgen + PapierHeute + PapierMorgen + RestMuellHeute + RestMuellMorgen + open_windows
                                           }
                                        //______________________________________________________________________________________
                                        
                                            // Ausgabestring in Datenpunkt schreiben
                                            var pfad = ausgabe_datenpunkt
                                            setState(pfad , ausgabe, true);
                                            log('----' +   ausgabe      +'  ----');
                                                      
                                        //------------------------------------------------------------------------------------------------------------------------------------------------
                                        

                                        Das läuft so lang, ich den Briefkasten geleert habe, bzw. der DutyCycle wieder abgesunken ist.

                                        Könntest Du natürlich auch mit "Bad ist besetzt" so machen.
                                        Das ändert zwar nicht das Push-Intervall, aber wenn nur! "Bad ist besetzt" im Wechsel mit der Uhrzeit angezeigt wird, fällt das bei einem flüchtigen Blick eher in's Auge.

                                        1 Reply Last reply Reply Quote 0
                                        • S
                                          Steff123 @liv-in-sky last edited by

                                          @liv-in-sky Hallo kann mann vieleicht den Matrix Mode mit Alexa steuern?

                                          liv-in-sky 1 Reply Last reply Reply Quote 0
                                          • liv-in-sky
                                            liv-in-sky @Steff123 last edited by

                                            @steff123 nicht einfach .- soweit ich weiß, kann man keinen string mit alexa setzen - aber man könnte einen zahlen value setzen - (hatte ich mal geschafft) - ich muss das erst testen
                                            alexa setze ..... auf 7 - dann sollte ein script von dir darauf reagieren

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            828
                                            Online

                                            31.6k
                                            Users

                                            79.6k
                                            Topics

                                            1.3m
                                            Posts

                                            esp8266 matrix display max 7219
                                            31
                                            460
                                            81266
                                            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