Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Visualisierung
    4. Vorlagen/Ideen MüllPlan VIEW / Widget ?

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Vorlagen/Ideen MüllPlan VIEW / Widget ?

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

      @salmi

      sorry nochmal - bin gerade nicht richtig bei der sache

      {var:radar2.1.Stefan._here;  var==true ? "blink-green" :   "blink-red": ""}
      
      S 1 Reply Last reply Reply Quote 0
      • S
        salmi @liv-in-sky last edited by

        @liv-in-sky sagte in Vorlagen/Ideen MüllPlan VIEW / Widget ?:

        @salmi

        sorry nochmal - bin gerade nicht richtig bei der sache

        {var:radar2.1.Stefan._here;  var==true ? "blink-green" :   "blink-red": ""}
        

        Funktioniert auch nicht keine Ahnung warum !

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

          @salmi

          dies ist jetzt getestet - true gehört tatsächlich in anführungzeichen

          {val:controll-own.0.Luefter3; val=="true" ? "blink-red":"blink-green"}
          

          test7.gif

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

            @liv-in-sky DANKE es funktioniert !!

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

              @salmi schwere geburt 😞

              1marvin-the-hitchhiker-s-guide-to-the-galaxy-robby-the-robot-paranoid-android-others-thumb.jpg

              sorry - war voll in einer anderen sache und etwas unkonzentriert

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

                Ich habe es dann auch endlich mal völlig unspektakulär geschafft es umzusetzen:
                Bild 1.png Bild 1.png

                Ganz (oder fast) ohne Widget, CSS etc. Ist eine SVG per HTML-Widget die über einen Datenpunkt gesteuert wird.
                Je nach Art der Tonne wird die SVG anders eingefärbt, genauso wie die Resttage: 0 rot, 1 orange, 2 gelb, >2 weiß
                Da ich nicht unbedingt der "Blinky-blinky" Typ bin, habe ich darauf verzichtet. Würde aber dank SVG auch funktionieren, genauso wie eine Animation der Tonne wenn sie raus muss, drehende Räder bei zB. 0 Tagen...
                Die kleinere Tonne wurde einfach per "transform" um 20% verkleinert.
                ...und weil es so schön war, geht es jetzt zur Animation der Heizungsübersicht 😎

                Chaot 1 Reply Last reply Reply Quote 0
                • Chaot
                  Chaot @SBorg last edited by

                  @SBorg Schaut interessant aus.
                  Kannst du davoneinen Export machen?
                  Ich würde das nur mit 2 Tonnen machen. Lässt sich das einfach ändern?

                  SBorg 1 Reply Last reply Reply Quote 0
                  • SBorg
                    SBorg Forum Testing Most Active @Chaot last edited by

                    @Chaot sagte in Vorlagen/Ideen MüllPlan VIEW / Widget ?:

                    Lässt sich das einfach ändern?

                    Ja und nein 😉
                    Ja: es ist sowieso eine einzelne Tonne mal 3
                    Nein: ganz sooo einfach ist das Ganze leider nicht. Wenn man es mal verinnerlicht hat, dann schon.
                    Du fügst folgendes zB. in ein HTML-Widget ein:

                    <script type="text/javascript">
                    
                    	setTimeout(function () {
                    	let MTonnenfarbe = "#ffffff";
                            let MTonnenart = document.getElementById("tonnenart").innerHTML; 
                            let inTagen = document.getElementById("intagen").innerHTML;
                            
                            if (MTonnenart == "Bio") { 
                                MTonnenfarbe = "#366926";
                            }
                            if (MTonnenart == "Restmüll") { 
                                MTonnenfarbe = "#0d121a";
                            }
                            if (MTonnenart == "Papier") { 
                                MTonnenfarbe = "#003b80";
                            }
                                    
                            if (inTagen > 2) {
                                document.getElementById("Resttage").setAttribute("fill", "#ffffff")
                            }
                            if (inTagen == 2) {
                                document.getElementById("Resttage").setAttribute("fill", "yellow")
                            }
                            if (inTagen == 1) {
                                document.getElementById("Resttage").setAttribute("fill", "orange")
                            }        
                            if (inTagen == 0) {
                                document.getElementById("Resttage").setAttribute("fill", "red")
                            }
                    	document.getElementById("tonne").setAttribute("fill", MTonnenfarbe);	
                        	document.getElementById("Resttage").innerHTML = inTagen;
                    	}, 1);
                    
                    </script>
                    
                    <svg
                       xmlns:dc="http://purl.org/dc/elements/1.1/"
                       xmlns:cc="http://creativecommons.org/ns#"
                       xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                       xmlns:svg="http://www.w3.org/2000/svg"
                       xmlns="http://www.w3.org/2000/svg"
                       xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
                       xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
                       width="39.374996"
                       height="62.999996">
                    
                      <g
                         id="g19"
                         transform="scale(0.9)">
                        <path
                           style="stroke:#000000;stroke-width:0.12395526" fill="#ffffff;"
                           d="m 27.640698,62.063108 c 0,2.30962 0.685,4.43054 1.82576,6.13638 h -14.94626 c -3.74897,0 -9.0201604,-7.67088 -9.0201604,-11.60867 0,-3.93778 0,-21.22317 0,-25.02732 0,-3.80415 -3.74931,-10.34873 -3.74931,-10.34873 v -10.14392 h 3.74931 4.6847804 28.06444 l 0.0392,41.0455 c -0.56481,-0.12756 -1.14832,-0.19703 -1.74472,-0.19703 -4.91656,0 -8.90298,4.54156 -8.90298,10.14379 z m 12.7575,-54.1320404 v -4.31252 c 0,-0.44314 -0.31446,-0.80092 -0.70287,-0.80092 h -8.85411 V 0.86276763 c 0,-0.443 -0.31434,-0.80079 -0.70288,-0.80079 h -16.47778 c -0.38878,0 -0.70276,0.35779 -0.70276,0.80079 V 2.8176276 H 0.76485763 c -0.38854,0 -0.70288,0.35778 -0.70288,0.80092 v 4.31252 c 0,0.44313 0.31434,0.80092 0.70288,0.80092 H 39.695428 c 0.38831,0 0.70277,-0.35779 0.70277,-0.80092 z m 3.28982,54.2656904 c 0,4.2687 -3.04817,7.74126 -6.79365,7.74126 -3.74619,0 -6.79365,-3.47256 -6.79365,-7.74126 0,-4.26872 3.04746,-7.74129 6.79365,-7.74129 3.74548,1.5e-4 6.79365,3.4727 6.79365,7.74129 z m -2.8114,0 c 0,-2.50188 -1.78594,-4.53773 -3.98225,-4.53773 -2.19492,0 -3.98225,2.03585 -3.98225,4.53773 0,2.50198 1.78733,4.5377 3.98225,4.5377 2.19631,0 3.98225,-2.03557 3.98225,-4.5377 z"
                           id="tonne" />
                        <path
                           id="Rad"
                           d="m 36.204428,69.777936 c -2.615979,-0.285381 -4.933228,-2.478069 -5.735568,-5.42726 -0.267673,-0.983897 -0.289036,-3.133945 -0.04084,-4.110059 0.66874,-2.63002 2.336699,-4.585917 4.574807,-5.364553 0.872285,-0.303468 2.25143,-0.376176 3.187049,-0.16802 2.539328,0.564946 4.606973,2.863003 5.215642,5.796852 0.246557,1.188428 0.183277,2.89413 -0.14903,4.017108 -1.023454,3.458603 -3.896828,5.600141 -7.052062,5.255932 z m 1.87603,-3.150555 c 0.821006,-0.273975 1.632,-0.943253 2.163815,-1.785703 0.330964,-0.524281 0.660372,-1.586918 0.719441,-2.320844 0.150052,-1.864381 -0.903967,-3.811346 -2.482277,-4.585217 -0.588885,-0.288739 -0.661038,-0.302456 -1.590991,-0.302456 -0.925394,0 -1.004411,0.0148 -1.579389,0.2959 -1.109176,0.542255 -1.986801,1.652397 -2.324423,2.940254 -0.209708,0.799931 -0.189278,2.080951 0.04495,2.818448 0.393086,1.237683 1.174235,2.206245 2.182312,2.705891 0.973227,0.482373 1.895995,0.557612 2.866562,0.233727 z"
                           style="fill:#000000;stroke:none;stroke-width:0"
                           inkscape:connector-curvature="0" />
                      </g>
                      <text
                         xml:space="preserve"
                         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:1.25;font-family:Bahnschrift;-inkscape-font-specification:'Bahnschrift, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.97517788;"
                         x="19.135151"
                         y="31.161312"
                         id="Tage"
                         inkscape:label="#tage"
                         transform="scale(1.0254538,0.97517802)"><tspan
                           sodipodi:role="line"
                           id="Resttage"
                           x="19.135151"
                           y="31.161312"
                           fill="#000000"
                           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;font-family:Bahnschrift;-inkscape-font-specification:'Bahnschrift, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr;text-anchor:middle;stroke-width:0.97517788;">98</tspan></text>
                    </svg>
                    
                    <span id="tonnenart" opacity="0">{w:MyOwnData.0.VIS.Muellkalender.naechster_Abholtermin; w.split(",")[0]}</span>
                    <span id="intagen" opacity="0">{w:MyOwnData.0.VIS.Muellkalender.naechster_Abholtermin; w.split(",")[1]}</span>
                    

                    #8-15 definieren die Art und Farbe der Tonne. "Art" muss dabei deiner Datenquelle entsprechen, wie zB. vom TrashSchedule-Adapter (gehen beliebig viele, einfach nach dem gleichen Schema hinzufügen; bei mir fehlt noch "Gelbe Tonne")

                    #18-28 dann die Tage wann was wie aussehen soll

                    #76+77 schließlich deine Datenpunkte für die "Art der Tonne" und die Resttage bis zur Leerung als Binding.

                    Beim TrashSchedule-Adapter bspw:

                    {trashschedule.0.next.daysleft}
                    {trashschedule.0.next.typestext}
                    

                    Dann kommt dein Problem, denn für weitere Tonnen hast du keine Daten. Ich erzeuge meine Daten selbst, deswegen sieht mein Binding auch etwas anders aus. Ich schreibe jeweils in einen Datenpunkt für Next, Next +1 und Next +2 "Tonnenart, Resttage". Ferner muss die Tonne angepasst werden, denn die Bezeichnung dürfen nur einmalig per View benutzt werden, sonst sind sie alle grün, schwarz...
                    Ich hänge dann einfach 1, 2, ... hinten dran. Ist auch kein Hexenwerk, aber du brauchst halt die Daten für die übernächste Leerung 😉

                    Chaot 1 Reply Last reply Reply Quote 0
                    • Chaot
                      Chaot @SBorg last edited by

                      @SBorg Danke dir.
                      Also die erste Tonne habe ich realsieren können.
                      Wie erzeugst du deine Datenpunkte? Das wäre für mich der nächste Punkt. Ich denke mal das sich das dann recht einfach zusammenschieben lässt.

                      SBorg 1 Reply Last reply Reply Quote 0
                      • SBorg
                        SBorg Forum Testing Most Active @Chaot last edited by

                        @Chaot Hatte noch vergessen, dass es im Editor so aussieht
                        Bild 1.png
                        Ich habe sie extra weiß gefärbt damit man gleich sieht wenn ein Fehler vorliegt. Die Tage kommen dann typischerweise wegen des Bindings. Hier nochmal die Tonne in klein, damit du siehst was ich mit keine doppelten Bezeichnungen meine. Sonst ist sie 1:1, bis auf "transform 0.7" (sie soll ja 20% kleiner sein; das Original ist auf 0.9 scaliert)

                        <script type="text/javascript">
                        
                        	setTimeout(function () {
                        	    let MTonnenfarbe1 = "#ffffff";
                                let MTonnenart1 = document.getElementById("tonnenart1").innerHTML; 
                                let inTagen1 = document.getElementById("intagen1").innerHTML;
                                
                                if (MTonnenart1 == "Bio") { 
                                    MTonnenfarbe1 = "#366926";
                                }
                                if (MTonnenart1 == "Restmüll") { 
                                    MTonnenfarbe1 = "#0d121a";
                                }
                                if (MTonnenart1 == "Papier") { 
                                    MTonnenfarbe1 = "#003b80";
                                }
                                        
                                if (inTagen1 > 2) {
                                    document.getElementById("Resttage1").setAttribute("fill", "#ffffff")
                                }
                                if (inTagen1 == 2) {
                                    document.getElementById("Resttage1").setAttribute("fill", "yellow")
                                }
                                if (inTagen1 == 1) {
                                    document.getElementById("Resttage1").setAttribute("fill", "orange")
                                }        
                                if (inTagen1 == 0) {
                                    document.getElementById("Resttage1").setAttribute("fill", "red")
                                }
                        	   	document.getElementById("tonne1").setAttribute("fill", MTonnenfarbe1);	
                            	document.getElementById("Resttage1").innerHTML = inTagen1;
                        	}, 1);
                        
                        </script>
                        
                        <svg
                           xmlns:dc="http://purl.org/dc/elements/1.1/"
                           xmlns:cc="http://creativecommons.org/ns#"
                           xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                           xmlns:svg="http://www.w3.org/2000/svg"
                           xmlns="http://www.w3.org/2000/svg"
                           xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
                           xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
                           version="1.1"
                           id="svg306"
                           sodipodi:docname="Mülltonne_klein.svg"
                           width="31.499996"
                           height="50.399998"
                           inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
                          <metadata
                             id="metadata312">
                            <rdf:RDF>
                              <cc:Work
                                 rdf:about="">
                                <dc:format>image/svg+xml</dc:format>
                                <dc:type
                                   rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
                                <dc:title></dc:title>
                              </cc:Work>
                            </rdf:RDF>
                          </metadata>
                          <defs
                             id="defs310" />
                          <sodipodi:namedview
                             pagecolor="#ffffff"
                             bordercolor="#666666"
                             borderopacity="1"
                             objecttolerance="10"
                             gridtolerance="10"
                             guidetolerance="10"
                             inkscape:pageopacity="0"
                             inkscape:pageshadow="2"
                             inkscape:window-width="1920"
                             inkscape:window-height="1017"
                             id="namedview308"
                             showgrid="false"
                             inkscape:zoom="11.313708"
                             inkscape:cx="15.887829"
                             inkscape:cy="24.720957"
                             inkscape:window-x="-8"
                             inkscape:window-y="-8"
                             inkscape:window-maximized="1"
                             inkscape:current-layer="svg306"
                             showguides="false">
                            <inkscape:grid
                               type="xygrid"
                               id="grid4017"
                               originx="-8.5975018"
                               originy="-465.34551" />
                          </sodipodi:namedview>
                          <g
                             id="g19"
                             transform="scale(0.7)">
                            <path
                               fill="#ffffff" style="stroke:#000000;stroke-width:0.12395526"
                               d="m 27.640698,62.063108 c 0,2.30962 0.685,4.43054 1.82576,6.13638 h -14.94626 c -3.74897,0 -9.0201604,-7.67088 -9.0201604,-11.60867 0,-3.93778 0,-21.22317 0,-25.02732 0,-3.80415 -3.74931,-10.34873 -3.74931,-10.34873 v -10.14392 h 3.74931 4.6847804 28.06444 l 0.0392,41.0455 c -0.56481,-0.12756 -1.14832,-0.19703 -1.74472,-0.19703 -4.91656,0 -8.90298,4.54156 -8.90298,10.14379 z m 12.7575,-54.1320404 v -4.31252 c 0,-0.44314 -0.31446,-0.80092 -0.70287,-0.80092 h -8.85411 V 0.86276763 c 0,-0.443 -0.31434,-0.80079 -0.70288,-0.80079 h -16.47778 c -0.38878,0 -0.70276,0.35779 -0.70276,0.80079 V 2.8176276 H 0.76485763 c -0.38854,0 -0.70288,0.35778 -0.70288,0.80092 v 4.31252 c 0,0.44313 0.31434,0.80092 0.70288,0.80092 H 39.695428 c 0.38831,0 0.70277,-0.35779 0.70277,-0.80092 z m 3.28982,54.2656904 c 0,4.2687 -3.04817,7.74126 -6.79365,7.74126 -3.74619,0 -6.79365,-3.47256 -6.79365,-7.74126 0,-4.26872 3.04746,-7.74129 6.79365,-7.74129 3.74548,1.5e-4 6.79365,3.4727 6.79365,7.74129 z m -2.8114,0 c 0,-2.50188 -1.78594,-4.53773 -3.98225,-4.53773 -2.19492,0 -3.98225,2.03585 -3.98225,4.53773 0,2.50198 1.78733,4.5377 3.98225,4.5377 2.19631,0 3.98225,-2.03557 3.98225,-4.5377 z"
                               id="tonne1" />
                            <path
                               id="Rad"
                               d="m 36.204428,69.777936 c -2.615979,-0.285381 -4.933228,-2.478069 -5.735568,-5.42726 -0.267673,-0.983897 -0.289036,-3.133945 -0.04084,-4.110059 0.66874,-2.63002 2.336699,-4.585917 4.574807,-5.364553 0.872285,-0.303468 2.25143,-0.376176 3.187049,-0.16802 2.539328,0.564946 4.606973,2.863003 5.215642,5.796852 0.246557,1.188428 0.183277,2.89413 -0.14903,4.017108 -1.023454,3.458603 -3.896828,5.600141 -7.052062,5.255932 z m 1.87603,-3.150555 c 0.821006,-0.273975 1.632,-0.943253 2.163815,-1.785703 0.330964,-0.524281 0.660372,-1.586918 0.719441,-2.320844 0.150052,-1.864381 -0.903967,-3.811346 -2.482277,-4.585217 -0.588885,-0.288739 -0.661038,-0.302456 -1.590991,-0.302456 -0.925394,0 -1.004411,0.0148 -1.579389,0.2959 -1.109176,0.542255 -1.986801,1.652397 -2.324423,2.940254 -0.209708,0.799931 -0.189278,2.080951 0.04495,2.818448 0.393086,1.237683 1.174235,2.206245 2.182312,2.705891 0.973227,0.482373 1.895995,0.557612 2.866562,0.233727 z"
                               style="fill:#000000;stroke:none;stroke-width:0"
                               inkscape:connector-curvature="0" />
                          </g>
                          <text
                             xml:space="preserve"
                             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.20000076px;line-height:1.25;font-family:Bahnschrift;-inkscape-font-specification:'Bahnschrift, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.78014231"
                             x="15.308122"
                             y="24.92905"
                             id="Tage"
                             inkscape:label="#tage"
                             transform="scale(1.0254538,0.97517802)"><tspan
                               sodipodi:role="line"
                               id="Resttage1"
                               x="15.308122"
                               y="24.92905"
                               fill="#000000"
                               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.20000076px;font-family:Bahnschrift;-inkscape-font-specification:'Bahnschrift, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.78014231">98</tspan></text>
                        </svg>
                        
                        
                        <span id="tonnenart1" opacity="0">{w:MyOwnData.0.VIS.Muellkalender.naechster_Abholtermin_plus1; w.split(",")[0]}</span>
                        <span id="intagen1" opacity="0">{w:MyOwnData.0.VIS.Muellkalender.naechster_Abholtermin_plus1; w.split(",")[1]}</span>
                        

                        Die Daten gewinne ich aus einem ziemlich komplexen JS, da ich noch eine andere Verwendung dafür habe. Es erzeugt noch Färbungen, Tagesaufgaben usw:
                        Bild1.png
                        Die Tonnen sind nur als Übersicht in der Home-View bei mir gedacht. Das Skript ist zu sehr auf mich zugeschnitten:
                        Bild 1.png

                        Chaot 1 Reply Last reply Reply Quote 0
                        • Chaot
                          Chaot @SBorg last edited by

                          @SBorg Ah, verstehe.
                          Trotzdem danke für den zweiten Teil. Ich werde mal schauen wie ich mir die Datenpunkt generiere. Das könnte schon irgendwie klappen.

                          SBorg 1 Reply Last reply Reply Quote 0
                          • SBorg
                            SBorg Forum Testing Most Active @Chaot last edited by

                            @Chaot Mach doch mal einen Feature-Request bei GitHub für den TrashSchedule-Adapter. Ev. lässt sich Matthias ja "erwärmen". Ich vote auch mit 🙂

                            haus-automatisierung 1 Reply Last reply Reply Quote 0
                            • haus-automatisierung
                              haus-automatisierung Developer Most Active @SBorg last edited by

                              @SBorg Was genau möchtet ihr haben? Die Leerungen nach der "nächsten"? Oder gehts um die Icons und VIS Darstellung?

                              SBorg 1 Reply Last reply Reply Quote 0
                              • SBorg
                                SBorg Forum Testing Most Active @haus-automatisierung last edited by

                                @haus-automatisierung Hallo Matthias, ja genau, die Daten der übernächsten Leerung 🙂
                                Wenn dein Haus dann auch in einem Garten wohnt, wirst du das "Problem" ev. auch kennenlernen. Morgen muss der Müll raus, aber bspw. übermorgen dann die Biotonne. Die ist nicht voll, also noch schnell den Rasen mähen und sie voll machen. Ist dann aber uU. blöd, wenn du dass dann Abends siehst wenn die Mülltonnenanzeige verschwindet, dass jetzt eigentlich gleich die Biotonne raus muss und bestenfalls du nun keine Zeit mehr hast, oder das mähen um die Uhrzeit nicht mehr erlaubt ist.
                                ...obwohl du ja dann eigentlich einen Mähroboter haben müsstest... 😁

                                haus-automatisierung Chaot Feuersturm 3 Replies Last reply Reply Quote 0
                                • haus-automatisierung
                                  haus-automatisierung Developer Most Active @SBorg last edited by

                                  @SBorg Okay, das macht Sinn 😸 Allerdings wird das bei mir nie passieren, da bei uns nie eine Abholung direkt am nachfolgenden Tag stattfindet, sondern immer mindestens eine Woche dazwischen liegt - außer bei Tannenbäumen 1x im Jahr.

                                  Aber das nehme ich gerne als Optimierung mit auf!

                                  1 Reply Last reply Reply Quote 2
                                  • Chaot
                                    Chaot @SBorg last edited by

                                    @SBorg Verstehe ich jetzt nicht ganz. Mein Nachbar mäht ungerührt um 21 Uhr oder am Sonntag.

                                    SBorg 1 Reply Last reply Reply Quote 0
                                    • Feuersturm
                                      Feuersturm @SBorg last edited by Feuersturm

                                      @SBorg Das Feature kann ich auch gebrauchen. Bei uns ist es so, dass z.B. Mittwochs Plastikmüll und einen Tag später dann die Biotonne geleert wird. Würde mich daher auch freuen, wenn die übernächste Leerung als Datenpunkt vorhanden ist.

                                      Edit: Hab mal bei Github ein Issue angelegt: https://github.com/klein0r/ioBroker.trashschedule/issues/7

                                      Feuer-sturm created this issue in klein0r/ioBroker.trashschedule

                                      closed Datenpunkt für "Übernächste" Leerung hinzufügen #7

                                      Feuersturm 1 Reply Last reply Reply Quote 1
                                      • SBorg
                                        SBorg Forum Testing Most Active @Chaot last edited by

                                        @Chaot Ich wohne in der Todeszone 1*, da macht man das genau 1x. Genau genommen ist sogar Feuerwerk an Sylvester verboten 😉
                                        * 50m Radius zu einem Krankenhaus

                                        ...und gerade aktuell (kommt bei uns sogar oft an drei aufeinander folgenden Tage):Bild 1.png

                                        1 Reply Last reply Reply Quote 1
                                        • haus-automatisierung
                                          haus-automatisierung Developer Most Active last edited by

                                          Ich habe in der letzten Version vom Tashschedule ein VIS Widget hinzugefügt. Das sieht aktuell so aus:

                                          Screenshot 2020-03-07 at 21.31.45.png

                                          Die Daten kommen aus dem json-Datenpunkt. Farben können jetzt direkt auf dem jeweiligen Typen hinterlegt werden.

                                          Chaot liv-in-sky Matze1976 B 5 Replies Last reply Reply Quote 6
                                          • Chaot
                                            Chaot @haus-automatisierung last edited by

                                            @haus-automatisierung Danke. Das ist eine gute Sache.
                                            Hast du eventuell eine kleine Anleitung wie man die Farebn hinterlegt? Ich habe absolut keine Ahnung von CSS

                                            haus-automatisierung 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            701
                                            Online

                                            31.7k
                                            Users

                                            79.8k
                                            Topics

                                            1.3m
                                            Posts

                                            vis
                                            38
                                            311
                                            47493
                                            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