Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Test Adapter lovelace v1.2.x

    NEWS

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    • Minor js-controller 7.0.7 Update in latest repo

    Test Adapter lovelace v1.2.x

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

      @david-g

      Ach - ich habe das unter Popup reingepackt…

      Wo ist denn der Unterschied zu Popup? Und wie muss der DP gefüllt werden?

      Garfonso 1 Reply Last reply Reply Quote 0
      • nukleuz
        nukleuz @David G. last edited by

        @david-g

        Also, unter notification funktioniert das 1A.
        Doch mich würde das Popup interessieren... Das ist auch ein JSON Datenpunkt.
        Der Aufbau scheint nicht gleich zu sein, wie bei notifications.

        Steht das irgendwo?

        Danke und Grüße

        1 Reply Last reply Reply Quote 0
        • Garfonso
          Garfonso Developer @nukleuz last edited by

          @nukleuz said in Test Adapter lovelace v1.2.x:

          Ist das die aktuelle Version 2.0 (rewritten)?

          Seit dem 27.9., ja.

          Warum ändert sich nach jedem Browser Refresh die ID des Browsers?
          Ich habe mittlerweile hunderte Einträge unter instances...
          Die ID sollte doch immer gleich bleiben - tut sie aber nicht.

          Urgs... das sollte so nicht. Hm. Hast du den Browser-Cache mal komplett gelöscht?
          Die ID wird eigentlich im "Local Storage" gespeichert. Hast du plugins ("Anti Tracking"), die sowas ständig löschen?
          Ich hab jetzt mit wildem refreshen auch mal geschafft, dass sie die ID ändert. Da muss es im browser_mod nen bug geben (weil die Daten eigentlich noch da waren, vermutlich race-condition).
          Achja, die alte browser_mod Karte hast du aber gelöscht?

          Ich könnte natürlich das Anlegen von instances Ordnern rausnehmen. Hm. Muss ich nochmal beobachten. Danke für's testen.

          Wie muss das json-Feld für popup korrekt gefüllt werden, damit auch eins angezeigt wird?

          Am wichtigsten ist, dass es ein korrektes JSON ist (ggf. mit JSONlint prüfen oder aus einem Skript raus ein Javascript Objekt mit JSON.stringify() reinschreiben).
          Ansonsten sieht das im Grunde so aus:

          {
            "title": "Tittel",
            "content": {
              "type": "entities",
              "entities": [
                "light.bed_light",
                "light.Stehlampe_oben"
              ]
            }
          }
          

          bei "content" kann halt eine lovelace-karte rein, hier eine entities card mit Parametern (in json statt yaml. Zur Not kann man das auch aus dem Objekt lovelace.0.configuration nehmen, da steht das auch in JSON statt yaml). Dazu gibt es noch ein paar optionale Felder.

          nukleuz 1 Reply Last reply Reply Quote 1
          • Garfonso
            Garfonso Developer @nukleuz last edited by

            @nukleuz und @david-g

            Notification (bzw. heißt jetzt wieder "toast", damit es von notifications unterscheidbar ist 😉 ) ist eine Nachricht, die "unten rechts" aufpoppt und optional Knöpfe haben kann.

            Popup kommt in der Mitte und kann eine komplette Lovelace Karte (bzw. mit den stack-Karten dann auch beliebig kompliziert) enthalten. Da könnte man z.B. die Kamera und einen Knopf zum Tür entriegeln anzeigen, wenn es geklingelt hat oder sowas.

            Ähnlich ist da auch das "more-info", aber da wird halt nur das more-info Fenster angezeigt, dafür deutlich einfacher zu nutzen (um z.B. ein Bild anzuzeigen bei einem Camera-entity).

            1 Reply Last reply Reply Quote 1
            • nukleuz
              nukleuz @Garfonso last edited by

              @garfonso

              Den Cache zu leeren hat denke ich den Trick getan - werde das aber im Auge behalten!

              Ja, die alte browser_mod Karte ist gelöscht.

              Mit deinem JSON fürs Popup funktioniert es auch!

              Ich werde das die Tage auf Herz und Nieren prüfen und gerne Feedback geben bzw. Fragen stellen! 🙂

              Danke für deine Bemühungen Lovelace noch runder zu machen...

              1 Reply Last reply Reply Quote 0
              • B
                Banis @Garfonso last edited by

                @garfonso sagte in Test Adapter lovelace v1.2.x:

                Wie da steht, gibt es browser-commander nicht mehr aber browser_mod. Und, wenn du die aktuelle Github Version hast, dann bringt die die browser_mod Karte mittlerweile direkt mit und du müsstest einen Ordner "instances" haben. Darin gibt es für jeden Browser einen Unterordner mit states mit denen man einen Browser gezielt steuern kann und im Ordner direkt states, mit denen man alle (verbundenen) Browser steuern kann.

                Diesen Ordner instances kann ich leider nicht finden. Weder bei der Karten noch in der kompletten lovelace Zip von der aktuelen 2.2.0. Kannst du mir kurz beschreiben wo ich diesen Ordner genau finde?

                David G. Garfonso 2 Replies Last reply Reply Quote 0
                • David G.
                  David G. @Banis last edited by

                  @Garfonso

                  Das Popup ist ja richtig cool.
                  Screenshot 2022-10-05 180905.png

                  Da fällt einem auch was zu ein ^^.

                  Langsam ärgere ich mich richtig, dass es bei mir zu Hause keinen extra Bildschirm für die Visu gibt.
                  Ist einfach mittlerweile alles so perfekt und man könnte so viel schönes mit machen.
                  Meine Frau steht nur was im Weg 😄

                  EDIT:
                  Ist es möglich das Popup zu "überschreiben"? Wenn man was hinterhersendet und das Popup nicht geschlossen wurde verschwindet es, ohne dass das neue kommt.

                  nukleuz 1 Reply Last reply Reply Quote 0
                  • nukleuz
                    nukleuz @David G. last edited by

                    @david-g

                    in den Datenpunkten gibt es popup_close.
                    Den einfach vor jedem anderen Popup/Nachricht vor mitsenden.

                    1 Reply Last reply Reply Quote 1
                    • nukleuz
                      nukleuz last edited by

                      @Garfonso

                      Ist das hier mit integriert:

                      148661d7-7a59-43e9-a156-a629fc6221fd-image.png

                      Danke für Info...

                      1 Reply Last reply Reply Quote 0
                      • Garfonso
                        Garfonso Developer @Banis last edited by

                        @banis said in Test Adapter lovelace v1.2.x:

                        Diesen Ordner instances kann ich leider nicht finden.

                        Sorry, in den Objekten, also iobroker Admin, da auf Objekte, und zu lovelace.0.instances navigieren.

                        @nukleuz said in Test Adapter lovelace v1.2.x:

                        Ist das hier mit integriert:

                        Nein.

                        Was ist dein Ziel? Die Kamera vom Tablet in ioBroker integrieren? Gibt es da nicht Adapter für?
                        Die Frage ist (ist gerade auch ein bisschen eine grundsätzliche Frage beim browser_mod), wie ich das konfigurierbar mache… Für jeden Browser (z.B. auch Smartphone?) will man das sicher nicht anhaben. Das schickt seeeeeeehr viele Nachrichten.

                        nukleuz 1 Reply Last reply Reply Quote 0
                        • nukleuz
                          nukleuz @Garfonso last edited by nukleuz

                          @garfonso

                          Ok, ich habe ein Tablet auf der Terrasse welches ich gerne mit Cam nutzen würde - Kinder, Hund etc.

                          Genial wäre es, nur die Geräte/Browser zuzulassen, bei denen es aus User-Sicht Sinn macht. Alles was sich verbindet zu Lovelace natürlich nicht…

                          Und so ein paar alte iPhone 6 - 10/Androids könnte man ja ganz gut dafür verwenden 😎 dann muss man sie nicht gleich/später wegschmeißen.

                          Ob es dafür Adapter gibt kann ich gerade nicht beantworten - hat jemand damit Erfahrungen?

                          1 Reply Last reply Reply Quote 0
                          • P
                            ple last edited by ple

                            stand müll

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

                              Kurze Frage in die Runde, bevor ich mich selber an eine Umsetzung setze.
                              Hat jemand den TR-064 Adapter im Einsatz und lässt sich die Anrufliste im Lovelace anzeigen?

                              Der Adapter bietet zwar einen HTML Datenpunkt an, aber die Struktur gefällt mich nicht und so würde ich die JSON aufbereiten und mir selber ein HTML Datenpunkt schreiben. Dieses kann man ja dann per Markdown in Lovelace anzeigen lassen.

                              Vielleicht hat ja jemand bereits eine Umsetzung und könnte diese hier bereitstellen?!?

                              David G. XBiT 3 Replies Last reply Reply Quote 0
                              • David G.
                                David G. @dontobi last edited by David G.

                                @dontobi

                                Das stimmt hatte ich aicu mal eingebunden und wieder entfernt, sah mir zu doof aus.

                                Evtl mache ich die Tage mal eine Tabelle, mittlere hat man da ja was Übung ^^.

                                1 Reply Last reply Reply Quote 1
                                • XBiT
                                  XBiT @dontobi last edited by

                                  @dontobi

                                  ich habe es als Popup deswegen kein HTML Code hier mal als Vorlage mein Blockly

                                  ausgehende Anrufe

                                  <xml xmlns="https://developers.google.com/blockly/xml">
                                   <variables>
                                     <variable id="D?f8d1}yqMAQtN6*#D[=">text_abgehender_anruf</variable>
                                     <variable id="`Gx:t#j6V|d3X;um-a*O">liste_abgehender_anruf</variable>
                                     <variable id="qBavb}BH]gCu?^|_[#d+">i</variable>
                                     <variable id="e611AD9uF^v98HFpN4=b">objekt_abgehender_anruf</variable>
                                     <variable id="k-n-/t=xT{X6,mPRsT(M">datum</variable>
                                     <variable id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</variable>
                                     <variable id="Z1{kN?pgEdRgO~H8YyV5">anrufernummer</variable>
                                   </variables>
                                   <block type="on" id="v)Zqh[l{w5?cEUfP,?xz" x="88" y="188">
                                     <field name="OID">tr-064.0.calllists.outbound.json</field>
                                     <field name="CONDITION">ne</field>
                                     <field name="ACK_CONDITION"></field>
                                     <statement name="STATEMENT">
                                       <block type="variables_set" id="h1IOb.lR,!LeVcd(XzEu">
                                         <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_abgehender_anruf</field>
                                         <value name="VALUE">
                                           <block type="text" id="flo+i`GppGgKiXd(h;Na">
                                             <field name="TEXT"></field>
                                           </block>
                                         </value>
                                         <next>
                                           <block type="variables_set" id="A8yxY$}r=+2{Q8`vjqdI">
                                             <field name="VAR" id="`Gx:t#j6V|d3X;um-a*O">liste_abgehender_anruf</field>
                                             <value name="VALUE">
                                               <block type="convert_json2object" id=";!82kbsNz:,r_C*rNj/(">
                                                 <value name="VALUE">
                                                   <block type="on_source" id="-ZvPSqt[hkd$ZPH_xx7:">
                                                     <field name="ATTR">state.val</field>
                                                   </block>
                                                 </value>
                                               </block>
                                             </value>
                                             <next>
                                               <block type="controls_for" id="f.#,Y7Pmow~n{J/;8Jv,">
                                                 <field name="VAR" id="qBavb}BH]gCu?^|_[#d+">i</field>
                                                 <value name="FROM">
                                                   <shadow type="math_number" id="d(zGP@FUd5lGx7a*XDaP">
                                                     <field name="NUM">1</field>
                                                   </shadow>
                                                 </value>
                                                 <value name="TO">
                                                   <shadow type="math_number" id="z3#XH-)!!ssABeZ/MxsD">
                                                     <field name="NUM">10</field>
                                                   </shadow>
                                                   <block type="lists_length" id="hRN5Il/8[|m*dK|[|(-2">
                                                     <value name="VALUE">
                                                       <block type="variables_get" id="1yZP$9?O+H4LQBUP?pwk">
                                                         <field name="VAR" id="`Gx:t#j6V|d3X;um-a*O">liste_abgehender_anruf</field>
                                                       </block>
                                                     </value>
                                                   </block>
                                                 </value>
                                                 <value name="BY">
                                                   <shadow type="math_number" id="]jF#y=5PFQ8..Kwk[jx!">
                                                     <field name="NUM">1</field>
                                                   </shadow>
                                                 </value>
                                                 <statement name="DO">
                                                   <block type="variables_set" id="Zc#Uo-du@LJxElhgsb/u">
                                                     <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_abgehender_anruf</field>
                                                     <value name="VALUE">
                                                       <block type="lists_getIndex" id="O,1Y1$lf4U1P#DmMrRZK">
                                                         <mutation statement="false" at="true"></mutation>
                                                         <field name="MODE">GET</field>
                                                         <field name="WHERE">FROM_START</field>
                                                         <value name="VALUE">
                                                           <block type="variables_get" id="vulF69{ihnD*D0l0Cs?Q">
                                                             <field name="VAR" id="`Gx:t#j6V|d3X;um-a*O">liste_abgehender_anruf</field>
                                                           </block>
                                                         </value>
                                                         <value name="AT">
                                                           <block type="variables_get" id="?NP*J4k/|`C5j_PxXE^S">
                                                             <field name="VAR" id="qBavb}BH]gCu?^|_[#d+">i</field>
                                                           </block>
                                                         </value>
                                                       </block>
                                                     </value>
                                                     <next>
                                                       <block type="variables_set" id="}^xayayF*2OyBHtG.bR,">
                                                         <field name="VAR" id="k-n-/t=xT{X6,mPRsT(M">datum</field>
                                                         <value name="VALUE">
                                                           <block type="get_attr" id="zd~2E+7@myRY(!u$E91=">
                                                             <value name="PATH">
                                                               <shadow type="text" id=".*qh;$XA%iYiuNsK/c-A">
                                                                 <field name="TEXT">date</field>
                                                               </shadow>
                                                             </value>
                                                             <value name="OBJECT">
                                                               <block type="variables_get" id="60|2{Hsxfv^k4;wsPICV">
                                                                 <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_abgehender_anruf</field>
                                                               </block>
                                                             </value>
                                                           </block>
                                                         </value>
                                                         <next>
                                                           <block type="variables_set" id="Eisu*85eL:9Wh^jj+oje">
                                                             <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                             <value name="VALUE">
                                                               <block type="get_attr" id="z.}K4YQ5!~jfugKg2^VX">
                                                                 <value name="PATH">
                                                                   <shadow type="text" id="V#51ggRlT4a(:Z#Ll0SS">
                                                                     <field name="TEXT">name</field>
                                                                   </shadow>
                                                                 </value>
                                                                 <value name="OBJECT">
                                                                   <block type="variables_get" id="#[%FnHsXLqf[Oa2Y^BP?">
                                                                     <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_abgehender_anruf</field>
                                                                   </block>
                                                                 </value>
                                                               </block>
                                                             </value>
                                                             <next>
                                                               <block type="controls_if" id="0d}=d41CH,=pbtZI:_fr">
                                                                 <value name="IF0">
                                                                   <block type="logic_compare" id="[?D=irsRna.mj3oy^%y$">
                                                                     <field name="OP">EQ</field>
                                                                     <value name="A">
                                                                       <block type="variables_get" id="/qLh~`j!@mPBf$[9I0d3">
                                                                         <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                                       </block>
                                                                     </value>
                                                                     <value name="B">
                                                                       <block type="text" id="x`a|CQm!$|hH$[z(Mm-u">
                                                                         <field name="TEXT"></field>
                                                                       </block>
                                                                     </value>
                                                                   </block>
                                                                 </value>
                                                                 <statement name="DO0">
                                                                   <block type="variables_set" id=",`Es5YtqwX~RN$97Hg?%">
                                                                     <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                                     <value name="VALUE">
                                                                       <block type="text" id="t3z?x]hPOla?|=Yoc8yc">
                                                                         <field name="TEXT">unbekannt</field>
                                                                       </block>
                                                                     </value>
                                                                   </block>
                                                                 </statement>
                                                                 <next>
                                                                   <block type="variables_set" id="9X53iyYkR*VwpT%;wUv*">
                                                                     <field name="VAR" id="Z1{kN?pgEdRgO~H8YyV5">anrufernummer</field>
                                                                     <value name="VALUE">
                                                                       <block type="get_attr" id="Qu1?S+tFrKfm8(3d`TCC">
                                                                         <value name="PATH">
                                                                           <shadow type="text" id="}W~oB8?]N3o1w{xEOyte">
                                                                             <field name="TEXT">called</field>
                                                                           </shadow>
                                                                         </value>
                                                                         <value name="OBJECT">
                                                                           <block type="variables_get" id="G$Bh_;0Qp[lwvX$.(eke">
                                                                             <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_abgehender_anruf</field>
                                                                           </block>
                                                                         </value>
                                                                       </block>
                                                                     </value>
                                                                     <next>
                                                                       <block type="variables_set" id="X-yrWEzIo6*zE(}u-j4L">
                                                                         <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_abgehender_anruf</field>
                                                                         <value name="VALUE">
                                                                           <block type="text_join" id="h8pOkCzPMiozF(UN0nR_">
                                                                             <mutation items="7"></mutation>
                                                                             <value name="ADD0">
                                                                               <block type="variables_get" id="OO|vk1)B-h9sr0RB9Pau">
                                                                                 <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_abgehender_anruf</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD1">
                                                                               <block type="text_newline" id="C?.,p0{}m|@G^HQCFv^`">
                                                                                 <field name="Type">\n</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD2">
                                                                               <block type="variables_get" id="jd`nuqcRav93`oEg=e4w">
                                                                                 <field name="VAR" id="k-n-/t=xT{X6,mPRsT(M">datum</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD3">
                                                                               <block type="text" id="K|.#yJX+xWaYb5p)=CBx">
                                                                                 <field name="TEXT"> </field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD4">
                                                                               <block type="variables_get" id="C=85DKw;]VL6N?bhf{MK">
                                                                                 <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD5">
                                                                               <block type="text" id="*B{rhdGJ2+Ffa5jTA?2t">
                                                                                 <field name="TEXT"> </field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD6">
                                                                               <block type="variables_get" id="$ebRGAEm}MP@n5p-wn;T">
                                                                                 <field name="VAR" id="Z1{kN?pgEdRgO~H8YyV5">anrufernummer</field>
                                                                               </block>
                                                                             </value>
                                                                           </block>
                                                                         </value>
                                                                       </block>
                                                                     </next>
                                                                   </block>
                                                                 </next>
                                                               </block>
                                                             </next>
                                                           </block>
                                                         </next>
                                                       </block>
                                                     </next>
                                                   </block>
                                                 </statement>
                                                 <next>
                                                   <block type="update" id="B[!Fjpa|_R1z$s0|X*0c">
                                                     <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                                                     <field name="OID">0_userdata.0.Home.angepasste_Texte_und_Anzeigen.Lovelace_FritzBox_ausgehende_Anrufe</field>
                                                     <field name="WITH_DELAY">FALSE</field>
                                                     <value name="VALUE">
                                                       <block type="text_join" id=".]flS_;xn3uTGPwjxvVx">
                                                         <mutation items="1"></mutation>
                                                         <value name="ADD0">
                                                           <block type="variables_get" id="5=Wp9Ea@]FR.}^s9nW~]">
                                                             <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_abgehender_anruf</field>
                                                           </block>
                                                         </value>
                                                       </block>
                                                     </value>
                                                   </block>
                                                 </next>
                                               </block>
                                             </next>
                                           </block>
                                         </next>
                                       </block>
                                     </statement>
                                   </block>
                                  </xml>
                                  

                                  eingehende Anrufe

                                  <xml xmlns="https://developers.google.com/blockly/xml">
                                   <variables>
                                     <variable id="D?f8d1}yqMAQtN6*#D[=">text_eingehender_anruf</variable>
                                     <variable id="`Gx:t#j6V|d3X;um-a*O">liste_eingehender_anruf</variable>
                                     <variable id="qBavb}BH]gCu?^|_[#d+">i</variable>
                                     <variable id="e611AD9uF^v98HFpN4=b">objekt_eingehender_anruf</variable>
                                     <variable id="k-n-/t=xT{X6,mPRsT(M">datum</variable>
                                     <variable id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</variable>
                                     <variable id="Z1{kN?pgEdRgO~H8YyV5">anrufernummer</variable>
                                   </variables>
                                   <block type="on" id="v)Zqh[l{w5?cEUfP,?xz" x="88" y="188">
                                     <field name="OID">tr-064.0.calllists.inbound.json</field>
                                     <field name="CONDITION">ne</field>
                                     <field name="ACK_CONDITION"></field>
                                     <statement name="STATEMENT">
                                       <block type="variables_set" id="h1IOb.lR,!LeVcd(XzEu">
                                         <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_eingehender_anruf</field>
                                         <value name="VALUE">
                                           <block type="text" id="flo+i`GppGgKiXd(h;Na">
                                             <field name="TEXT"></field>
                                           </block>
                                         </value>
                                         <next>
                                           <block type="variables_set" id="A8yxY$}r=+2{Q8`vjqdI">
                                             <field name="VAR" id="`Gx:t#j6V|d3X;um-a*O">liste_eingehender_anruf</field>
                                             <value name="VALUE">
                                               <block type="convert_json2object" id=";!82kbsNz:,r_C*rNj/(">
                                                 <value name="VALUE">
                                                   <block type="on_source" id="-ZvPSqt[hkd$ZPH_xx7:">
                                                     <field name="ATTR">state.val</field>
                                                   </block>
                                                 </value>
                                               </block>
                                             </value>
                                             <next>
                                               <block type="controls_for" id="f.#,Y7Pmow~n{J/;8Jv,">
                                                 <field name="VAR" id="qBavb}BH]gCu?^|_[#d+">i</field>
                                                 <value name="FROM">
                                                   <shadow type="math_number" id="d(zGP@FUd5lGx7a*XDaP">
                                                     <field name="NUM">1</field>
                                                   </shadow>
                                                 </value>
                                                 <value name="TO">
                                                   <shadow type="math_number" id="z3#XH-)!!ssABeZ/MxsD">
                                                     <field name="NUM">10</field>
                                                   </shadow>
                                                   <block type="lists_length" id="hRN5Il/8[|m*dK|[|(-2">
                                                     <value name="VALUE">
                                                       <block type="variables_get" id="1yZP$9?O+H4LQBUP?pwk">
                                                         <field name="VAR" id="`Gx:t#j6V|d3X;um-a*O">liste_eingehender_anruf</field>
                                                       </block>
                                                     </value>
                                                   </block>
                                                 </value>
                                                 <value name="BY">
                                                   <shadow type="math_number" id="]jF#y=5PFQ8..Kwk[jx!">
                                                     <field name="NUM">1</field>
                                                   </shadow>
                                                 </value>
                                                 <statement name="DO">
                                                   <block type="variables_set" id="Zc#Uo-du@LJxElhgsb/u">
                                                     <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_eingehender_anruf</field>
                                                     <value name="VALUE">
                                                       <block type="lists_getIndex" id="O,1Y1$lf4U1P#DmMrRZK">
                                                         <mutation statement="false" at="true"></mutation>
                                                         <field name="MODE">GET</field>
                                                         <field name="WHERE">FROM_START</field>
                                                         <value name="VALUE">
                                                           <block type="variables_get" id="vulF69{ihnD*D0l0Cs?Q">
                                                             <field name="VAR" id="`Gx:t#j6V|d3X;um-a*O">liste_eingehender_anruf</field>
                                                           </block>
                                                         </value>
                                                         <value name="AT">
                                                           <block type="variables_get" id="?NP*J4k/|`C5j_PxXE^S">
                                                             <field name="VAR" id="qBavb}BH]gCu?^|_[#d+">i</field>
                                                           </block>
                                                         </value>
                                                       </block>
                                                     </value>
                                                     <next>
                                                       <block type="variables_set" id="}^xayayF*2OyBHtG.bR,">
                                                         <field name="VAR" id="k-n-/t=xT{X6,mPRsT(M">datum</field>
                                                         <value name="VALUE">
                                                           <block type="get_attr" id="zd~2E+7@myRY(!u$E91=">
                                                             <value name="PATH">
                                                               <shadow type="text" id=".*qh;$XA%iYiuNsK/c-A">
                                                                 <field name="TEXT">date</field>
                                                               </shadow>
                                                             </value>
                                                             <value name="OBJECT">
                                                               <block type="variables_get" id="60|2{Hsxfv^k4;wsPICV">
                                                                 <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_eingehender_anruf</field>
                                                               </block>
                                                             </value>
                                                           </block>
                                                         </value>
                                                         <next>
                                                           <block type="variables_set" id="Eisu*85eL:9Wh^jj+oje">
                                                             <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                             <value name="VALUE">
                                                               <block type="get_attr" id="z.}K4YQ5!~jfugKg2^VX">
                                                                 <value name="PATH">
                                                                   <shadow type="text" id="V#51ggRlT4a(:Z#Ll0SS">
                                                                     <field name="TEXT">name</field>
                                                                   </shadow>
                                                                 </value>
                                                                 <value name="OBJECT">
                                                                   <block type="variables_get" id="#[%FnHsXLqf[Oa2Y^BP?">
                                                                     <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_eingehender_anruf</field>
                                                                   </block>
                                                                 </value>
                                                               </block>
                                                             </value>
                                                             <next>
                                                               <block type="controls_if" id="B=ho(cHbo%r_$L{6gGI|">
                                                                 <value name="IF0">
                                                                   <block type="logic_compare" id="_/j*i%7L=S!E4yD4UY6q">
                                                                     <field name="OP">EQ</field>
                                                                     <value name="A">
                                                                       <block type="variables_get" id="R7zSXf!(R0U+$A(bo1t3">
                                                                         <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                                       </block>
                                                                     </value>
                                                                     <value name="B">
                                                                       <block type="text" id="Ze{0*.Z}xYrB[k8dn-sE">
                                                                         <field name="TEXT"></field>
                                                                       </block>
                                                                     </value>
                                                                   </block>
                                                                 </value>
                                                                 <statement name="DO0">
                                                                   <block type="variables_set" id="vvk6oGg)pr8EatX-3W:h">
                                                                     <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                                     <value name="VALUE">
                                                                       <block type="text" id="9ZX$9nRdYCpM`[rYHnX_">
                                                                         <field name="TEXT">unbekannt</field>
                                                                       </block>
                                                                     </value>
                                                                   </block>
                                                                 </statement>
                                                                 <next>
                                                                   <block type="variables_set" id="9X53iyYkR*VwpT%;wUv*">
                                                                     <field name="VAR" id="Z1{kN?pgEdRgO~H8YyV5">anrufernummer</field>
                                                                     <value name="VALUE">
                                                                       <block type="get_attr" id="Qu1?S+tFrKfm8(3d`TCC">
                                                                         <value name="PATH">
                                                                           <shadow type="text" id="}W~oB8?]N3o1w{xEOyte">
                                                                             <field name="TEXT">caller</field>
                                                                           </shadow>
                                                                         </value>
                                                                         <value name="OBJECT">
                                                                           <block type="variables_get" id="G$Bh_;0Qp[lwvX$.(eke">
                                                                             <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_eingehender_anruf</field>
                                                                           </block>
                                                                         </value>
                                                                       </block>
                                                                     </value>
                                                                     <next>
                                                                       <block type="variables_set" id="X-yrWEzIo6*zE(}u-j4L">
                                                                         <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_eingehender_anruf</field>
                                                                         <value name="VALUE">
                                                                           <block type="text_join" id="h8pOkCzPMiozF(UN0nR_">
                                                                             <mutation items="7"></mutation>
                                                                             <value name="ADD0">
                                                                               <block type="variables_get" id="OO|vk1)B-h9sr0RB9Pau">
                                                                                 <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_eingehender_anruf</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD1">
                                                                               <block type="text_newline" id="C?.,p0{}m|@G^HQCFv^`">
                                                                                 <field name="Type">\n</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD2">
                                                                               <block type="variables_get" id="jd`nuqcRav93`oEg=e4w">
                                                                                 <field name="VAR" id="k-n-/t=xT{X6,mPRsT(M">datum</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD3">
                                                                               <block type="text" id="K|.#yJX+xWaYb5p)=CBx">
                                                                                 <field name="TEXT"> </field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD4">
                                                                               <block type="variables_get" id="C=85DKw;]VL6N?bhf{MK">
                                                                                 <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD5">
                                                                               <block type="text" id="*B{rhdGJ2+Ffa5jTA?2t">
                                                                                 <field name="TEXT"> </field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD6">
                                                                               <block type="variables_get" id="$ebRGAEm}MP@n5p-wn;T">
                                                                                 <field name="VAR" id="Z1{kN?pgEdRgO~H8YyV5">anrufernummer</field>
                                                                               </block>
                                                                             </value>
                                                                           </block>
                                                                         </value>
                                                                       </block>
                                                                     </next>
                                                                   </block>
                                                                 </next>
                                                               </block>
                                                             </next>
                                                           </block>
                                                         </next>
                                                       </block>
                                                     </next>
                                                   </block>
                                                 </statement>
                                                 <next>
                                                   <block type="update" id="B[!Fjpa|_R1z$s0|X*0c">
                                                     <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                                                     <field name="OID">0_userdata.0.Home.angepasste_Texte_und_Anzeigen.Lovelace_FritzBox_eingehende_Anrufe</field>
                                                     <field name="WITH_DELAY">FALSE</field>
                                                     <value name="VALUE">
                                                       <block type="text_join" id=".]flS_;xn3uTGPwjxvVx">
                                                         <mutation items="1"></mutation>
                                                         <value name="ADD0">
                                                           <block type="variables_get" id="5=Wp9Ea@]FR.}^s9nW~]">
                                                             <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_eingehender_anruf</field>
                                                           </block>
                                                         </value>
                                                       </block>
                                                     </value>
                                                   </block>
                                                 </next>
                                               </block>
                                             </next>
                                           </block>
                                         </next>
                                       </block>
                                     </statement>
                                   </block>
                                  </xml>
                                  

                                  verpasste Anrufe

                                  <xml xmlns="https://developers.google.com/blockly/xml">
                                   <variables>
                                     <variable id="D?f8d1}yqMAQtN6*#D[=">text_verpasster_anruf</variable>
                                     <variable id="`Gx:t#j6V|d3X;um-a*O">liste_verpasster_anruf</variable>
                                     <variable id="qBavb}BH]gCu?^|_[#d+">i</variable>
                                     <variable id="e611AD9uF^v98HFpN4=b">objekt_verpasster_anruf</variable>
                                     <variable id="k-n-/t=xT{X6,mPRsT(M">datum</variable>
                                     <variable id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</variable>
                                     <variable id="Z1{kN?pgEdRgO~H8YyV5">anrufernummer</variable>
                                   </variables>
                                   <block type="on" id="v)Zqh[l{w5?cEUfP,?xz" x="88" y="188">
                                     <field name="OID">tr-064.0.calllists.missed.json</field>
                                     <field name="CONDITION">ne</field>
                                     <field name="ACK_CONDITION"></field>
                                     <statement name="STATEMENT">
                                       <block type="variables_set" id="h1IOb.lR,!LeVcd(XzEu">
                                         <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_verpasster_anruf</field>
                                         <value name="VALUE">
                                           <block type="text" id="flo+i`GppGgKiXd(h;Na">
                                             <field name="TEXT"></field>
                                           </block>
                                         </value>
                                         <next>
                                           <block type="variables_set" id="A8yxY$}r=+2{Q8`vjqdI">
                                             <field name="VAR" id="`Gx:t#j6V|d3X;um-a*O">liste_verpasster_anruf</field>
                                             <value name="VALUE">
                                               <block type="convert_json2object" id=";!82kbsNz:,r_C*rNj/(">
                                                 <value name="VALUE">
                                                   <block type="on_source" id="-ZvPSqt[hkd$ZPH_xx7:">
                                                     <field name="ATTR">state.val</field>
                                                   </block>
                                                 </value>
                                               </block>
                                             </value>
                                             <next>
                                               <block type="controls_for" id="f.#,Y7Pmow~n{J/;8Jv,">
                                                 <field name="VAR" id="qBavb}BH]gCu?^|_[#d+">i</field>
                                                 <value name="FROM">
                                                   <shadow type="math_number" id="d(zGP@FUd5lGx7a*XDaP">
                                                     <field name="NUM">1</field>
                                                   </shadow>
                                                 </value>
                                                 <value name="TO">
                                                   <shadow type="math_number" id="z3#XH-)!!ssABeZ/MxsD">
                                                     <field name="NUM">10</field>
                                                   </shadow>
                                                   <block type="lists_length" id="hRN5Il/8[|m*dK|[|(-2">
                                                     <value name="VALUE">
                                                       <block type="variables_get" id="1yZP$9?O+H4LQBUP?pwk">
                                                         <field name="VAR" id="`Gx:t#j6V|d3X;um-a*O">liste_verpasster_anruf</field>
                                                       </block>
                                                     </value>
                                                   </block>
                                                 </value>
                                                 <value name="BY">
                                                   <shadow type="math_number" id="]jF#y=5PFQ8..Kwk[jx!">
                                                     <field name="NUM">1</field>
                                                   </shadow>
                                                 </value>
                                                 <statement name="DO">
                                                   <block type="variables_set" id="Zc#Uo-du@LJxElhgsb/u">
                                                     <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_verpasster_anruf</field>
                                                     <value name="VALUE">
                                                       <block type="lists_getIndex" id="O,1Y1$lf4U1P#DmMrRZK">
                                                         <mutation statement="false" at="true"></mutation>
                                                         <field name="MODE">GET</field>
                                                         <field name="WHERE">FROM_START</field>
                                                         <value name="VALUE">
                                                           <block type="variables_get" id="vulF69{ihnD*D0l0Cs?Q">
                                                             <field name="VAR" id="`Gx:t#j6V|d3X;um-a*O">liste_verpasster_anruf</field>
                                                           </block>
                                                         </value>
                                                         <value name="AT">
                                                           <block type="variables_get" id="?NP*J4k/|`C5j_PxXE^S">
                                                             <field name="VAR" id="qBavb}BH]gCu?^|_[#d+">i</field>
                                                           </block>
                                                         </value>
                                                       </block>
                                                     </value>
                                                     <next>
                                                       <block type="variables_set" id="}^xayayF*2OyBHtG.bR,">
                                                         <field name="VAR" id="k-n-/t=xT{X6,mPRsT(M">datum</field>
                                                         <value name="VALUE">
                                                           <block type="get_attr" id="zd~2E+7@myRY(!u$E91=">
                                                             <value name="PATH">
                                                               <shadow type="text" id=".*qh;$XA%iYiuNsK/c-A">
                                                                 <field name="TEXT">date</field>
                                                               </shadow>
                                                             </value>
                                                             <value name="OBJECT">
                                                               <block type="variables_get" id="60|2{Hsxfv^k4;wsPICV">
                                                                 <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_verpasster_anruf</field>
                                                               </block>
                                                             </value>
                                                           </block>
                                                         </value>
                                                         <next>
                                                           <block type="variables_set" id="Eisu*85eL:9Wh^jj+oje">
                                                             <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                             <value name="VALUE">
                                                               <block type="get_attr" id="z.}K4YQ5!~jfugKg2^VX">
                                                                 <value name="PATH">
                                                                   <shadow type="text" id="V#51ggRlT4a(:Z#Ll0SS">
                                                                     <field name="TEXT">name</field>
                                                                   </shadow>
                                                                 </value>
                                                                 <value name="OBJECT">
                                                                   <block type="variables_get" id="#[%FnHsXLqf[Oa2Y^BP?">
                                                                     <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_verpasster_anruf</field>
                                                                   </block>
                                                                 </value>
                                                               </block>
                                                             </value>
                                                             <next>
                                                               <block type="controls_if" id="1q9Gy9p9WwpAnhz/1U.J">
                                                                 <value name="IF0">
                                                                   <block type="logic_compare" id="F=gGgG!AlYgM=(CV/~.p">
                                                                     <field name="OP">EQ</field>
                                                                     <value name="A">
                                                                       <block type="variables_get" id="L/_4dTYrmL5HMz#t.iVw">
                                                                         <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                                       </block>
                                                                     </value>
                                                                     <value name="B">
                                                                       <block type="text" id="vt@cQ$m*)LSjW|j+m=ov">
                                                                         <field name="TEXT"></field>
                                                                       </block>
                                                                     </value>
                                                                   </block>
                                                                 </value>
                                                                 <statement name="DO0">
                                                                   <block type="variables_set" id="Lz;3V#9.n7g;SCA,rLDb">
                                                                     <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                                     <value name="VALUE">
                                                                       <block type="text" id="B5D+WXzP)qkNw^-Il,`d">
                                                                         <field name="TEXT">unbekannt</field>
                                                                       </block>
                                                                     </value>
                                                                   </block>
                                                                 </statement>
                                                                 <next>
                                                                   <block type="variables_set" id="9X53iyYkR*VwpT%;wUv*">
                                                                     <field name="VAR" id="Z1{kN?pgEdRgO~H8YyV5">anrufernummer</field>
                                                                     <value name="VALUE">
                                                                       <block type="get_attr" id="Qu1?S+tFrKfm8(3d`TCC">
                                                                         <value name="PATH">
                                                                           <shadow type="text" id="}W~oB8?]N3o1w{xEOyte">
                                                                             <field name="TEXT">caller</field>
                                                                           </shadow>
                                                                         </value>
                                                                         <value name="OBJECT">
                                                                           <block type="variables_get" id="G$Bh_;0Qp[lwvX$.(eke">
                                                                             <field name="VAR" id="e611AD9uF^v98HFpN4=b">objekt_verpasster_anruf</field>
                                                                           </block>
                                                                         </value>
                                                                       </block>
                                                                     </value>
                                                                     <next>
                                                                       <block type="variables_set" id="X-yrWEzIo6*zE(}u-j4L">
                                                                         <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_verpasster_anruf</field>
                                                                         <value name="VALUE">
                                                                           <block type="text_join" id="h8pOkCzPMiozF(UN0nR_">
                                                                             <mutation items="7"></mutation>
                                                                             <value name="ADD0">
                                                                               <block type="variables_get" id="OO|vk1)B-h9sr0RB9Pau">
                                                                                 <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_verpasster_anruf</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD1">
                                                                               <block type="text_newline" id="C?.,p0{}m|@G^HQCFv^`">
                                                                                 <field name="Type">\n</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD2">
                                                                               <block type="variables_get" id="jd`nuqcRav93`oEg=e4w">
                                                                                 <field name="VAR" id="k-n-/t=xT{X6,mPRsT(M">datum</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD3">
                                                                               <block type="text" id="K|.#yJX+xWaYb5p)=CBx">
                                                                                 <field name="TEXT"> </field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD4">
                                                                               <block type="variables_get" id="C=85DKw;]VL6N?bhf{MK">
                                                                                 <field name="VAR" id="SL/R/)aq*FUQ0^X`Wu9[">anrufername</field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD5">
                                                                               <block type="text" id="*B{rhdGJ2+Ffa5jTA?2t">
                                                                                 <field name="TEXT"> </field>
                                                                               </block>
                                                                             </value>
                                                                             <value name="ADD6">
                                                                               <block type="variables_get" id="$ebRGAEm}MP@n5p-wn;T">
                                                                                 <field name="VAR" id="Z1{kN?pgEdRgO~H8YyV5">anrufernummer</field>
                                                                               </block>
                                                                             </value>
                                                                           </block>
                                                                         </value>
                                                                       </block>
                                                                     </next>
                                                                   </block>
                                                                 </next>
                                                               </block>
                                                             </next>
                                                           </block>
                                                         </next>
                                                       </block>
                                                     </next>
                                                   </block>
                                                 </statement>
                                                 <next>
                                                   <block type="update" id="B[!Fjpa|_R1z$s0|X*0c">
                                                     <mutation xmlns="http://www.w3.org/1999/xhtml" delay_input="false"></mutation>
                                                     <field name="OID">0_userdata.0.Home.angepasste_Texte_und_Anzeigen.Lovelace_FritzBox_verpasste_Anrufe</field>
                                                     <field name="WITH_DELAY">FALSE</field>
                                                     <value name="VALUE">
                                                       <block type="text_join" id=".]flS_;xn3uTGPwjxvVx">
                                                         <mutation items="1"></mutation>
                                                         <value name="ADD0">
                                                           <block type="variables_get" id="5=Wp9Ea@]FR.}^s9nW~]">
                                                             <field name="VAR" id="D?f8d1}yqMAQtN6*#D[=">text_verpasster_anruf</field>
                                                           </block>
                                                         </value>
                                                       </block>
                                                     </value>
                                                   </block>
                                                 </next>
                                               </block>
                                             </next>
                                           </block>
                                         </next>
                                       </block>
                                     </statement>
                                   </block>
                                  </xml>
                                  

                                  Ausgaben sind im Ordner 0_userdata.0.Home.angepasste_Texte_und_Anzeigen.(Skriptname)

                                  1 Reply Last reply Reply Quote 0
                                  • David G.
                                    David G. last edited by David G.

                                    @dontobi

                                    Hier mein erster Entwurf.
                                    Original vs mein erster Anlauf.

                                    JPEG_20221017_215640_8036397835012970130.jpg

                                    @XBiT

                                    Kannst du mein ein Screenshot vom Popup senden?

                                    XBiT 1 Reply Last reply Reply Quote 0
                                    • XBiT
                                      XBiT @David G. last edited by XBiT

                                      @david-g

                                      Habe es jetzt nur fix im Browser gemacht beim Tablet schaut es besser aus aber so in etwa ist es.

                                      popup.png

                                      David G. 1 Reply Last reply Reply Quote 0
                                      • David G.
                                        David G. @XBiT last edited by

                                        @xbit

                                        Danke.
                                        Ist aber kein lovelace oder?
                                        Da geht es aber neuerdings auch out of the Box.

                                        XBiT 1 Reply Last reply Reply Quote 0
                                        • XBiT
                                          XBiT @David G. last edited by

                                          @david-g

                                          naja kommt drauf an was du meinst... ist die custom:button-card
                                          und die geht ja in Lovelace und habe es so schon eine ganze weile.
                                          Hat aber jetzt nichts mir dem Popup von der neuen Version von Lovelace zutun

                                          Bsp.:

                                               - type: custom:button-card
                                                 entity: sensor.FritzBox_calllists_missed_count
                                                 show_entity_picture: true
                                                 entity_picture: /cards/fritzbox_unbeantworteter_anruf.png
                                                 show_state: false
                                                 name: verpasste Anrufe
                                                 aspect_ratio: 2/1
                                                 tap_action:
                                                   action: call-service
                                                   confirmation:
                                                     text: >-
                                                       [[[ return
                                                       states['sensor.Home_angepasste_Texte_und_Anzeigen_Lovelace_FritzBox_verpasste_Anrufe'].state
                                                       ]]]
                                                 hold_action:
                                                   action: call-service
                                                   service: input_select.select_option
                                                   service_data:
                                                     entity_id: sensor.FritzBox_calllists_missed_count
                                                     option: 0
                                                 styles:
                                                   entity_picture:
                                                     - width: 25%
                                                   card:
                                                     - border-radius: 0px
                                                   name:
                                                     - font-size: 13px
                                                   grid:
                                                     - position: relative
                                                   custom_fields:
                                                     ausgehende_anrufe:
                                                       - color: white
                                                       - border-radius: 50%
                                                       - position: absolute
                                                       - left: 70%
                                                       - top: 10%
                                                       - height: 30px
                                                       - width: 30px
                                                       - font-size: 10px
                                                       - line-height: 30px
                                                       - animation: blink 3s ease infinite
                                                 custom_fields:
                                                   ausgehende_anrufe: |
                                                     [[[ 
                                                       if (states['sensor.FritzBox_calllists_missed_count'].state == '0')
                                                       return ' ';
                                                       return states['sensor.FritzBox_calllists_missed_count'].state; ]]]
                                          

                                          David G. 1 Reply Last reply Reply Quote 1
                                          • David G.
                                            David G. @XBiT last edited by

                                            @xbit
                                            Oh, krass.
                                            Sieht so im Ausschnitt echt nicht nach lovelace aus ^^.

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            363
                                            Online

                                            31.6k
                                            Users

                                            79.5k
                                            Topics

                                            1.3m
                                            Posts

                                            lovelace visualization
                                            78
                                            1514
                                            428696
                                            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