Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Visualisierung
    4. Anleitung: Widgets für den Adapter DasWetter

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Anleitung: Widgets für den Adapter DasWetter

    This topic has been deleted. Only users with topic management privileges can see it.
    • K
      Kuddel last edited by

      einfach das blockly Skript kopieren und den Trigger löschen. dann speichern und ausführen.

      dann sollten die links alle erstellt werden

      1 Reply Last reply Reply Quote 0
      • Santos
        Santos last edited by

        Ich habe das Script abgeändert, zwei mal gelöscht und neu erstellt. Nichts hat geholfen, bei den Datenpunkten stehen immer noch "false".

        Auf welchen Wert achtet das Script in Blockly? Bei mir gibt es keinen Datenpunkt "CONDITIONEN", ich habe es geändert auf "Wetter Symbol id".

        1 Reply Last reply Reply Quote 0
        • Santos
          Santos last edited by

          Sorry, es hat sich gelöst. Das Script war nicht im Ordner "common" gespeichert, sondern woanders.

          1 Reply Last reply Reply Quote 0
          • K
            Kuddel last edited by

            Das Blockly Skript arbeitet für das Wetter Icon mit der Datenpunkt "ConditionID" sowie für das Wind Icon mit "WindID"

            Ändert sich von den IDs ein Objekt, wir das Skript ausgeführt und die Links neu erstellt

            1 Reply Last reply Reply Quote 0
            • sigi234
              sigi234 Forum Testing Most Active last edited by

              Es wird schön langsam…..... 😉

              2858_screenshot__59_.png

              1 Reply Last reply Reply Quote 0
              • Santos
                Santos last edited by

                @Kuddel:

                Das Blockly Skript arbeitet für das Wetter Icon mit der Datenpunkt "ConditionID" sowie für das Wind Icon mit "WindID"

                Ändert sich von den IDs ein Objekt, wir das Skript ausgeführt und die Links neu erstellt `
                Wie gesagt, ich habe keine Datenpunkte mit "Condition". Was soll ich jetzt wählen?
                7725_1_-_kopie.jpg

                1 Reply Last reply Reply Quote 0
                • K
                  Kuddel last edited by

                  Du hast eine andere Version des Adapters. Ich vermute mal eine neuere da bei dir schon alles auf deutsch ist

                  1 Reply Last reply Reply Quote 0
                  • Santos
                    Santos last edited by

                    Soll ich das Script auf Veränderung des Textes bei "Wetterbedienungen" triggern?

                    1 Reply Last reply Reply Quote 0
                    • K
                      Kuddel last edited by

                      probier es einfach mal aus

                      1 Reply Last reply Reply Quote 0
                      • R
                        robsdobs last edited by

                        Hallo,

                        danke für das widget.

                        kleiner Hinweis, wenn man im Blockly anstelle "http://192.168.4.30:8082/daswetter/icons/…" die Adresse "/daswetter/icons/..." nimmt, ist das unabhängig von der IP.

                        Wer das lieber als Javascript (anstelle Blockly) haben will, das sieht so aus:

                        function setDasWetterIcons() {
                          // Heute
                          setState("javascript.0.DasWetter.Wetter-Symbol-0"/*Wetter-Symbol-0*/, '/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.0d.ConditionID").val) + '.png', true);
                          setState("javascript.0.DasWetterWind-Symbol-0"/*Wind-Symbol-0*/, '/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.0d.WindID").val) + '.png', true);
                          // Morgen
                          setState("javascript.0.DasWetter.Wetter-Symbol-1"/*Wetter-Symbol-1*/, '/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.1d.ConditionID").val) + '.png', true);
                          setState("javascript.0.DasWetterWind-Symbol-1"/*Wind-Symbol-1*/, '/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.1d.WindID").val) + '.png', true);
                          // Übermorgen
                          setState("javascript.0.DasWetter.Wetter-Symbol-2"/*Wetter-Symbol-2*/, '/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.2d.ConditionID").val) + '.png', true);
                          setState("javascript.0.DasWetterWind-Symbol-2"/*Wind-Symbol-2*/, '/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.2d.WindID").val) + '.png', true);
                          // In 3 Tagen
                          setState("javascript.0.DasWetter.Wetter-Symbol-3"/*Wetter-Symbol-3*/, '/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.3d.ConditionID").val) + '.png', true);
                          setState("javascript.0.DasWetterWind-Symbol-3"/*Wind-Symbol-3*/, '/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.3d.WindID").val) + '.png', true);
                          // In 4 Tagen
                          setState("javascript.0.DasWetter.Wetter-Symbol-4"/*Wetter-Symbol-4*/, '/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.4d.ConditionID").val) + '.png', true);
                          setState("javascript.0.DasWetterWind-Symbol-4"/*Wind-Symbol-4*/, '/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.4d.WindID").val) + '.png', true);
                        
                        }
                        
                        // Pfade für Icons setzen
                        subscribe({id: ['daswetter.0.NextDays.0d.ConditionID',
                                        'daswetter.0.NextDays.1d.ConditionID',
                                        'daswetter.0.NextDays.2d.ConditionID',
                                        'daswetter.0.NextDays.3d.ConditionID',
                                        'daswetter.0.NextDays.4d.ConditionID'], change: "ne"},
                          function (obj) {
                            setDasWetterIcons();
                          });
                        
                        setDasWetterIcons();
                        

                        Gruß

                        1 Reply Last reply Reply Quote 0
                        • K
                          Kuddel last edited by

                          @robsdobs:

                          Hallo,

                          danke für das widget.

                          kleiner Hinweis, wenn man im Blockly anstelle "http://192.168.4.30:8082/daswetter/icons/…" die Adresse "/vis/daswetter/icons/..." nimmt, ist das unabhängig von der IP.

                          Wer das lieber als Javascript (anstelle Blockly) haben will, das sieht so aus:

                          function setDasWetterIcons() {
                            // Heute
                            setState("javascript.0.DasWetterWetter-Symbol-0"/*Wetter-Symbol-0*/, '/vis/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.0d.ConditionID").val) + '.png', true);
                            setState("javascript.0.DasWetterWind-Symbol-0"/*Wind-Symbol-0*/, '/vis/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.0d.WindID").val) + '.png', true);
                            // Morgen
                            setState("javascript.0.DasWetterWetter-Symbol-1"/*Wetter-Symbol-1*/, '/vis/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.1d.ConditionID").val) + '.png', true);
                            setState("javascript.0.DasWetterWind-Symbol-1"/*Wind-Symbol-1*/, '/vis/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.1d.WindID").val) + '.png', true);
                            // Übermorgen
                            setState("javascript.0.DasWetterWetter-Symbol-2"/*Wetter-Symbol-2*/, '/vis/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.2d.ConditionID").val) + '.png', true);
                            setState("javascript.0.DasWetterWind-Symbol-2"/*Wind-Symbol-2*/, '/vis/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.2d.WindID").val) + '.png', true);
                            // In 3 Tagen
                            setState("javascript.0.DasWetterWetter-Symbol-3"/*Wetter-Symbol-3*/, '/vis/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.3d.ConditionID").val) + '.png', true);
                            setState("javascript.0.DasWetterWind-Symbol-3"/*Wind-Symbol-3*/, '/vis/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.3d.WindID").val) + '.png', true);
                            // In 4 Tagen
                            setState("javascript.0.DasWetterWetter-Symbol-4"/*Wetter-Symbol-4*/, '/vis/daswetter/icons/tiempo-weather/galeria3/' + String(getState("daswetter.0.NextDays.4d.ConditionID").val) + '.png', true);
                            setState("javascript.0.DasWetterWind-Symbol-4"/*Wind-Symbol-4*/, '/vis/daswetter/icons/viento-wind/galeria1/' + String(getState("daswetter.0.NextDays.4d.WindID").val) + '.png', true);
                            
                          }
                          
                          // Pfade für Icons setzen
                          subscribe({id: ['daswetter.0.NextDays.0d.ConditionID',
                                          'daswetter.0.NextDays.1d.ConditionID',
                                          'daswetter.0.NextDays.2d.ConditionID',
                                          'daswetter.0.NextDays.3d.ConditionID',
                                          'daswetter.0.NextDays.4d.ConditionID'], change: "ne"},
                            function (obj) {
                              setDasWetterIcons();
                            });
                          
                          setDasWetterIcons();
                          

                          Gruß `

                          Achtung, du hast dich bei den Objektet vertippt.

                          FALSCH

                          javascript.0.DasWetterWetter-Symbol-0
                          
                          

                          RICHTIG

                          javascript.0.DasWetter.Wetter-Symbol-0
                          
                          

                          Das mit "VIS" statt IP konnte ich nicht nachvollziehen. VIS wird bei mir DNS-seitig nicht aufgelöst.

                          Somit konnte ich den Link im Browser nicht testen. Ich weiß daher nicht, ob ioBroker das auflösen kann

                          1 Reply Last reply Reply Quote 0
                          • sigi234
                            sigi234 Forum Testing Most Active last edited by

                            Hallo,

                            ich habe eine neue Wetter-View erstellt, was sagt Ihr dazu?

                            2858_screenshot__81_.png

                            1 Reply Last reply Reply Quote 0
                            • R
                              robsdobs last edited by

                              @Kuddel:

                              Das mit "VIS" statt IP konnte ich nicht nachvollziehen. VIS wird bei mir DNS-seitig nicht aufgelöst.

                              Somit konnte ich den Link im Browser nicht testen. Ich weiß daher nicht, ob ioBroker das auflösen kann `

                              Danke habe meinen Text oben korrigiert.

                              Das war auf meine Umgebung abgestimmt und beim "generisch" machen haben sich die Fehler eingeschlichen. Daher fehlte auch der Punkt zwischen DasWetter und Wetter. Das /vis/ ist auch falsch (das funktioniert nur in meiner Umgebung).

                              Es muss einfach ohne IP Adresse sein. Die Domain ergänzt der Browser von sich aus:
                              1367_2018-06-18_19h22_43.png

                              1 Reply Last reply Reply Quote 0
                              • K
                                Kuddel last edited by

                                @Robsdobs: Recht haste, geht auch ohne IP.

                                Für die Blockly Leute, hier eine aktuelle Version von meinem Skript, was direkt 1 zu 1 verwendet werden kann:

                                ! ````
                                <xml xmlns="http://www.w3.org/1999/xhtml"><block type="on_ext" id="H,KX6Mm#-[^B.l+~6iM|" x="-888" y="38"><mutation items="5"></mutation>
                                <field name="CONDITION">ne</field>

                                <value name="OID0"><shadow type="field_oid" id="Wyl=I2DLx?1U|S,d;:#^"><field name="oid">daswetter.0.NextDays.0d.ConditionID</field></shadow></value> 
                                <value name="OID1"><shadow type="field_oid" id="0Q,T1o4W){54Z)kdXJ.Q"><field name="oid">daswetter.0.NextDays.1d.ConditionID</field></shadow></value> 
                                <value name="OID2"><shadow type="field_oid" id="GVW__!nb(l6GLk^kL|+E"><field name="oid">daswetter.0.NextDays.2d.ConditionID</field></shadow></value> 
                                <value name="OID3"><shadow type="field_oid" id="8=t|K,fcLNVnY#.5io/w"><field name="oid">daswetter.0.NextDays.3d.ConditionID</field></shadow></value> 
                                <value name="OID4"><shadow type="field_oid" id="AgHKVrU-L|qU;%PRY[h^"><field name="oid">daswetter.0.NextDays.4d.ConditionID</field></shadow></value> 
                                <statement name="STATEMENT"><block type="comment" id="CUHF)h3bwTMNf+ZPI;;E"><field name="COMMENT">Heute</field>
                                    <next><block type="update" id="M}yj3^nD)0H+:Qnmdr(m"><mutation delay_input="false"></mutation>
                                        <field name="OID">javascript.0.DasWetter.Wetter-Symbol-0</field>
                                        <field name="WITH_DELAY">FALSE</field>
                                        <value name="VALUE"><block type="text_join" id=":ix!Eg)PzFa{EUNwedkb" inline="false"><mutation items="2"></mutation>
                                            <value name="ADD0"><block type="text_join" id="{.Yp2TkXo`WM)CCF(jS)"><mutation items="2"></mutation>
                                                <value name="ADD0"><block type="text" id="4M%rc7YYH+{GpBR4h^|{"><field name="TEXT">/daswetter/icons/tiempo-weather/galeria3/</field></block></value> 
                                                <value name="ADD1"><block type="get_value" id="Y|xbUbVApHb+A%Bo1X0B"><field name="ATTR">val</field>
                                                    <field name="OID">daswetter.0.NextDays.0d.ConditionID</field></block></value></block></value> 
                                            <value name="ADD1"><block type="text" id="/e^gF/j6UHtE;~*DU1oJ"><field name="TEXT">.png</field></block></value></block></value> 
                                        <next><block type="update" id="XvwFh/0;~/[WtTPp0N8J"><mutation delay_input="false"></mutation>
                                            <field name="OID">javascript.0.DasWetter.Wind-Symbol-0</field>
                                            <field name="WITH_DELAY">FALSE</field>
                                            <value name="VALUE"><block type="text_join" id="wFW+:ys#X=*n,a3lfp7i" inline="false"><mutation items="2"></mutation>
                                                <value name="ADD0"><block type="text_join" id="s36Q_h/ua|ovVtkwl~m/"><mutation items="2"></mutation>
                                                    <value name="ADD0"><block type="text" id="TuYc5/VzRT3aFVc47[0S"><field name="TEXT">/daswetter/icons/viento-wind/galeria2/</field></block></value> 
                                                    <value name="ADD1"><block type="get_value" id="@M}1Q7?MP+_tNHdF^7r|"><field name="ATTR">val</field>
                                                        <field name="OID">daswetter.0.NextDays.0d.WindID</field></block></value></block></value> 
                                                <value name="ADD1"><block type="text" id="BPpY3n]0W`;O)3xx5z,/"><field name="TEXT">.png</field></block></value></block></value> 
                                            <next><block type="comment" id="e9oc:jwlv~6%[ZBvBy_."><field name="COMMENT">Morgen</field>
                                                <next><block type="update" id="N7ii{LL-4jg.{DIdG0uS"><mutation delay_input="false"></mutation>
                                                    <field name="OID">javascript.0.DasWetter.Wetter-Symbol-1</field>
                                                    <field name="WITH_DELAY">FALSE</field>
                                                    <value name="VALUE"><block type="text_join" id="hD%+*,qKskQ;4YS%a5F~" inline="false"><mutation items="2"></mutation>
                                                        <value name="ADD0"><block type="text_join" id="hZYF3ZkSvoGfX=jj{][U"><mutation items="2"></mutation>
                                                            <value name="ADD0"><block type="text" id="fG?ww?Ezki(0XZe.xyUZ"><field name="TEXT">/daswetter/icons/tiempo-weather/galeria3/</field></block></value> 
                                                            <value name="ADD1"><block type="get_value" id="Jucgv-59U}mJUKSXkXPy"><field name="ATTR">val</field>
                                                                <field name="OID">daswetter.0.NextDays.1d.ConditionID</field></block></value></block></value> 
                                                        <value name="ADD1"><block type="text" id="oYRqPwv)0{b%u_9Saor!"><field name="TEXT">.png</field></block></value></block></value> 
                                                    <next><block type="update" id="YP-0f=+mPd~S~h]5m?|("><mutation delay_input="false"></mutation>
                                                        <field name="OID">javascript.0.DasWetter.Wind-Symbol-1</field>
                                                        <field name="WITH_DELAY">FALSE</field>
                                                        <value name="VALUE"><block type="text_join" id="lb]%Brx{1Z,=Y|xgW~[h" inline="false"><mutation items="2"></mutation>
                                                            <value name="ADD0"><block type="text_join" id="mi#Njo88f/]rEhe.Y9`_"><mutation items="2"></mutation>
                                                                <value name="ADD0"><block type="text" id=")vNmj60zweAc6`ZR+vzd"><field name="TEXT">/daswetter/icons/viento-wind/galeria2/</field></block></value> 
                                                                <value name="ADD1"><block type="get_value" id="uFtPQmtwIr.D|+Pw+1Ef"><field name="ATTR">val</field>
                                                                    <field name="OID">daswetter.0.NextDays.1d.WindID</field></block></value></block></value> 
                                                            <value name="ADD1"><block type="text" id="+Dt+iw@AH]Ff%5[67:Di"><field name="TEXT">.png</field></block></value></block></value> 
                                                        <next><block type="comment" id="(Y7a]Jrq9N4]@^DUc}fT"><field name="COMMENT">Übermorgen</field>
                                                            <next><block type="update" id="?U7;qki{ZH6^Q;[vl,=B"><mutation delay_input="false"></mutation>
                                                                <field name="OID">javascript.0.DasWetter.Wetter-Symbol-2</field>
                                                                <field name="WITH_DELAY">FALSE</field>
                                                                <value name="VALUE"><block type="text_join" id="rIDHy`W:7ako7@wwvL.y" inline="false"><mutation items="2"></mutation>
                                                                    <value name="ADD0"><block type="text_join" id="llxbl@j%!O8mR9u(O#QW"><mutation items="2"></mutation>
                                                                        <value name="ADD0"><block type="text" id="^bd@5RFN0gYd}-BhTpPz"><field name="TEXT">/daswetter/icons/tiempo-weather/galeria3/</field></block></value> 
                                                                        <value name="ADD1"><block type="get_value" id="kTj?k(%f)R:W:perEV.W"><field name="ATTR">val</field>
                                                                            <field name="OID">daswetter.0.NextDays.2d.ConditionID</field></block></value></block></value> 
                                                                    <value name="ADD1"><block type="text" id="P-TuJLccSQE-t(;o4j_q"><field name="TEXT">.png</field></block></value></block></value> 
                                                                <next><block type="update" id="Urw?qBA.-;-#BPJ+-Y.u"><mutation delay_input="false"></mutation>
                                                                    <field name="OID">javascript.0.DasWetter.Wind-Symbol-2</field>
                                                                    <field name="WITH_DELAY">FALSE</field>
                                                                    <value name="VALUE"><block type="text_join" id="DZP#:k#]CYFv=tlTC+Dy" inline="false"><mutation items="2"></mutation>
                                                                        <value name="ADD0"><block type="text_join" id="ib{ZTYy?Nib3.w#G{Q=L"><mutation items="2"></mutation>
                                                                            <value name="ADD0"><block type="text" id="l2CPCknxIor/aDArDGl6"><field name="TEXT">/daswetter/icons/viento-wind/galeria2/</field></block></value> 
                                                                            <value name="ADD1"><block type="get_value" id="JUooh-)anym,AiI9:yq,"><field name="ATTR">val</field>
                                                                                <field name="OID">daswetter.0.NextDays.2d.WindID</field></block></value></block></value> 
                                                                        <value name="ADD1"><block type="text" id="wwJ{(9ldf0kvvp2[H1T*"><field name="TEXT">.png</field></block></value></block></value> 
                                                                    <next><block type="comment" id="Y5=M=y%nYvfojG22T/^A"><field name="COMMENT">In 3 Tagen</field>
                                                                        <next><block type="update" id="H{=je7)F:b_*x9WV8xzV"><mutation delay_input="false"></mutation>
                                                                            <field name="OID">javascript.0.DasWetter.Wetter-Symbol-3</field>
                                                                            <field name="WITH_DELAY">FALSE</field>
                                                                            <value name="VALUE"><block type="text_join" id="(n-TyoP:2a7b!shv+}69" inline="false"><mutation items="2"></mutation>
                                                                                <value name="ADD0"><block type="text_join" id="3`C,hMpY`8R#wa0`CJ6:"><mutation items="2"></mutation>
                                                                                    <value name="ADD0"><block type="text" id="w^A](QdK1qu,^_mV%zML"><field name="TEXT">/daswetter/icons/tiempo-weather/galeria3/</field></block></value> 
                                                                                    <value name="ADD1"><block type="get_value" id="/e-:#-Yk?j^XF!j0e.kR"><field name="ATTR">val</field>
                                                                                        <field name="OID">daswetter.0.NextDays.3d.ConditionID</field></block></value></block></value> 
                                                                                <value name="ADD1"><block type="text" id="qX`6|omv__,CV+^esPw{"><field name="TEXT">.png</field></block></value></block></value> 
                                                                            <next><block type="update" id="t{c%yv;7Hp{seJ4t|h2~"><mutation delay_input="false"></mutation>
                                                                                <field name="OID">javascript.0.DasWetter.Wind-Symbol-3</field>
                                                                                <field name="WITH_DELAY">FALSE</field>
                                                                                <value name="VALUE"><block type="text_join" id="6%N7pFf{U}6+EyD?oBay" inline="false"><mutation items="2"></mutation>
                                                                                    <value name="ADD0"><block type="text_join" id="t}Qq|-Tj3tgMM7t#3=Y#"><mutation items="2"></mutation>
                                                                                        <value name="ADD0"><block type="text" id="V5)yoFe|1am[-u-@zwge"><field name="TEXT">/daswetter/icons/viento-wind/galeria2/</field></block></value> 
                                                                                        <value name="ADD1"><block type="get_value" id="4w*ArV!b-d`{%jk?:Fb3"><field name="ATTR">val</field>
                                                                                            <field name="OID">daswetter.0.NextDays.3d.WindID</field></block></value></block></value> 
                                                                                    <value name="ADD1"><block type="text" id=":ucejQaYExc6G4TtgWrH"><field name="TEXT">.png</field></block></value></block></value> 
                                                                                <next><block type="comment" id="L`.J^qy[]PZJSia=0gGc"><field name="COMMENT">In 4 Tagen</field>
                                                                                    <next><block type="update" id="Nfy)f]14?)(#v^m7n(7R"><mutation delay_input="false"></mutation>
                                                                                        <field name="OID">javascript.0.DasWetter.Wetter-Symbol-4</field>
                                                                                        <field name="WITH_DELAY">FALSE</field>
                                                                                        <value name="VALUE"><block type="text_join" id="[A=0aYg0/~+uo[z^AYe6" inline="false"><mutation items="2"></mutation>
                                                                                            <value name="ADD0"><block type="text_join" id="g9R]@?U9Pt8Gj.Mrjx!T"><mutation items="2"></mutation>
                                                                                                <value name="ADD0"><block type="text" id="|L}vWP0U6n+zon?Ck9d0"><field name="TEXT">/daswetter/icons/tiempo-weather/galeria3/</field></block></value> 
                                                                                                <value name="ADD1"><block type="get_value" id="Pwr#k9vimOEf8ciUib-J"><field name="ATTR">val</field>
                                                                                                    <field name="OID">daswetter.0.NextDays.4d.ConditionID</field></block></value></block></value> 
                                                                                            <value name="ADD1"><block type="text" id="=av93hU]*HV,[P1Iz4hE"><field name="TEXT">.png</field></block></value></block></value> 
                                                                                        <next><block type="update" id="`Qf6]Ly+`k:fZ?y{.;qp"><mutation delay_input="false"></mutation>
                                                                                            <field name="OID">javascript.0.DasWetter.Wind-Symbol-4</field>
                                                                                            <field name="WITH_DELAY">FALSE</field>
                                                                                            <value name="VALUE"><block type="text_join" id="[3D5z.Zymn~dP`]xYZ]K" inline="false"><mutation items="2"></mutation>
                                                                                                <value name="ADD0"><block type="text_join" id="q)86HlkpCOyDVw2|o{0p"><mutation items="2"></mutation>
                                                                                                    <value name="ADD0"><block type="text" id="/g5=O{_^(I(CWNGs^i6d"><field name="TEXT">/daswetter/icons/viento-wind/galeria2/</field></block></value> 
                                                                                                    <value name="ADD1"><block type="get_value" id="J+t)}LF_o*cLO}XB~EGX"><field name="ATTR">val</field>
                                                                                                        <field name="OID">daswetter.0.NextDays.4d.WindID</field></block></value></block></value> 
                                                                                                <value name="ADD1"><block type="text" id="]~#qwvU=z0g3%J#:WuPO"><field name="TEXT">.png</field></block></value></block></value></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></statement></block> 
                                

                                <block type="comment" id="x=k+lfFlAHFBJRZgwoNG" x="-462" y="1188"><field name="COMMENT">Pfade für Icons setzen</field></block></xml>

                                ! ````

                                Q 1 Reply Last reply Reply Quote 0
                                • sigi234
                                  sigi234 Forum Testing Most Active last edited by

                                  Hallo,

                                  kann ich die Farbe der Wind- Symbole ändern bzw. gibt es sie in einer anderen Farbe?

                                  1 Reply Last reply Reply Quote 0
                                  • K
                                    Kuddel last edited by

                                    @sigi234:

                                    Hallo,

                                    kann ich die Farbe der Wind- Symbole ändern bzw. gibt es sie in einer anderen Farbe? `

                                    Du kannst dir eigene Symbole erstellen in einer anderen Farbe und dann auf dem ioBroker speichern.

                                    Es werden ja nur *.png Datein angezeigt.

                                    1 Reply Last reply Reply Quote 0
                                    • J
                                      jensus11 last edited by

                                      @sigi234:

                                      Hallo,

                                      ich habe eine neue Wetter-View erstellt, was sagt Ihr dazu?

                                      Screenshot (81).png `

                                      Sehr schick und gute Infos auf einen Blick.

                                      Stellst du den View hier zur Verfügung?

                                      1 Reply Last reply Reply Quote 0
                                      • sigi234
                                        sigi234 Forum Testing Most Active last edited by

                                        Hallo,

                                        sicher - bitte sehr:

                                        2858_view_wetter_2_2.txt

                                        1 Reply Last reply Reply Quote 0
                                        • C
                                          Coffeelover last edited by

                                          Hallo,

                                          ich habe das View von dir, Sigi, gerade installiert. Leider sehe ich nur Werte, keine Bilder. Welchen Schritt habe ich vergessen?

                                          VG

                                          1 Reply Last reply Reply Quote 0
                                          • sigi234
                                            sigi234 Forum Testing Most Active last edited by

                                            Hast du das Installiert?

                                            https://github.com/rg-engineering/ioBro … /README.md

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            912
                                            Online

                                            31.7k
                                            Users

                                            79.7k
                                            Topics

                                            1.3m
                                            Posts

                                            23
                                            81
                                            23993
                                            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