Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. jarvis v3.0.0 - just another remarkable vis

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    jarvis v3.0.0 - just another remarkable vis

    This topic has been deleted. Only users with topic management privileges can see it.
    • M
      MCU @mpl1338 last edited by

      @mpl1338 Hast du mal ein bildliches Beispiel?

      1 Reply Last reply Reply Quote 0
      • M
        mpl1338 last edited by

        lüftung2.png lüftung1.png

        Hab das jetzt über einen Dimmer gelöst. Wie bekomme ich das Prozent Symbol weg? und warum wird die Anzeigevariante nicht übernommen? ich möchte anstelle "0" ein "Aus" stehen haben.

        1 Reply Last reply Reply Quote 0
        • M
          MCU last edited by MCU

          @mpl1338
          Einheit

          {"default":""}
          

          Komponenten-Optionen
          https://mcuiobroker.gitbook.io/jarvis-infos/jarvis-v3/besonderheiten-v3/geraet/body-element/levelbody#max-wert-100-oder-default
          https://mcuiobroker.gitbook.io/jarvis-infos/jarvis-v3/besonderheiten-v3/geraet/body-element/levelbody#prozentanzeige-im-marker-label-integrieren
          Anzeigevarainte zieht nicht bei levelBody, wäre aber ein Ansatz, den man verfolgen könnte.
          -> Feature Request in github erstellen

          1 Reply Last reply Reply Quote 0
          • M
            mpl1338 last edited by

            @mcu said in jarvis v3.0.0 - just another remarkable vis:

            {"default":""}

            das funzt schonmal 🙂

            wenn ich jetzt markerlabel auf "val => {if (val===0){return "Aus";}}" setze bekomme ich auch das "Aus" jedoch bekommen die Stufen 1-3 eine weitere Dezimalstelle

            bekommst du das auch weggezaubert?

            lüftung4.png lüftung3.png

            M 1 Reply Last reply Reply Quote 1
            • M
              MCU @mpl1338 last edited by MCU

              @mpl1338

              val => {if (val===0){return "aus";} if(val>0 && val<4){ return parseInt(val);} }
              
              M 1 Reply Last reply Reply Quote 1
              • M
                mpl1338 @MCU last edited by

                @mcu said in jarvis v3.0.0 - just another remarkable vis:

                val => {if (val===0){return "aus";} if(val>0 && val<4){ return parseInt(val);} }

                Damit gehts 🙂

                Vielen Dank.

                M 1 Reply Last reply Reply Quote 1
                • M
                  MCU @mpl1338 last edited by

                  @mpl1338 Bitte einmal das Ergebnis als Bild. Ich nehme es in die Doku.

                  M 1 Reply Last reply Reply Quote 1
                  • Ronny Gerndt
                    Ronny Gerndt last edited by

                    Ich brauch mal wieder Hilfe 😔
                    Ich habe Werte in einem State im Format "89,717" diese werden regelmäßig aktualisiert und per History gespeichert.

                    Die Werte stehen auch so in der History. Leider kommen die im History Graph immer gerundet im Diagramm an. Dort steht dann statt "89,717" nur "89.00". Wie bekomm ich da die korrekten Werte raus?

                    1 Reply Last reply Reply Quote 0
                    • M
                      MCU last edited by

                      @ronny-gerndt Zeig mal die Einstellungen zum HistoryGraph.

                      Ronny Gerndt 1 Reply Last reply Reply Quote 0
                      • Ronny Gerndt
                        Ronny Gerndt @MCU last edited by

                        @mcu e2ea23ae-387d-482f-8291-dcd8574d67bd-image.png

                        Konfig der x Achse:

                        {
                          "type": "time",
                          "min": "(value,ts,index) => { const now = new Date(new Date().getTime()); return new Date(now.getFullYear(), now.getMonth(), now.getDate()-28).getTime()}",
                          "max": "(value,ts,index) => { const now = new Date(new Date().getTime()); return new Date(now.getFullYear(), now.getMonth(), now.getDate() + 1, 23, 59, 59).getTime()}"
                        }
                        
                        M 1 Reply Last reply Reply Quote 0
                        • M
                          MCU @Ronny Gerndt last edited by

                          @ronny-gerndt Und wo wird jetzt der falsche Wert angezeigt?

                          Ronny Gerndt 1 Reply Last reply Reply Quote 0
                          • Ronny Gerndt
                            Ronny Gerndt @MCU last edited by Ronny Gerndt

                            @mcu 977dccab-01ff-4419-a5c8-4980dd227b89-image.png
                            vs
                            9182f704-c1bd-4e0c-ae3b-1b67e2866cd8-image.png
                            Versteh nicht warum da gerundet wird

                            M 1 Reply Last reply Reply Quote 0
                            • M
                              MCU @Ronny Gerndt last edited by

                              @ronny-gerndt Welche Version hast du im Einsatz?

                              Ronny Gerndt 1 Reply Last reply Reply Quote 0
                              • Ronny Gerndt
                                Ronny Gerndt @MCU last edited by

                                @mcu v3.1.9-beta.2

                                M 1 Reply Last reply Reply Quote 0
                                • M
                                  MCU @Ronny Gerndt last edited by

                                  @ronny-gerndt Hast du mal ein Upload versucht?

                                  iob upload jarvis
                                  

                                  Ansonsten bitte ein Issue in github erstellen.
                                  https://github.com/Zefau/ioBroker.jarvis/issues

                                  Ronny Gerndt 1 Reply Last reply Reply Quote 0
                                  • Ronny Gerndt
                                    Ronny Gerndt @MCU last edited by

                                    @mcu Ne leider auch nicht. Dann mach ich später mal ein Issue. Danke für die Hilfe

                                    1 Reply Last reply Reply Quote 0
                                    • Ronny Gerndt
                                      Ronny Gerndt last edited by

                                      Hab mir jetzt ein Converter Script gebastelt das mir 89,717 in 89.171 umwandelt und dann passt es auch mit der Anzeige.
                                      Issue hab ich dennoch mal erstellt.

                                      1 Reply Last reply Reply Quote 1
                                      • M
                                        mpl1338 @MCU last edited by

                                        @mcu said in jarvis v3.0.0 - just another remarkable vis:

                                        @mpl1338 Bitte einmal das Ergebnis als Bild. Ich nehme es in die Doku.

                                        lüftung4.png lüftung3_1.png lüftung2.png lüftung1.png

                                        1 Reply Last reply Reply Quote 1
                                        • M
                                          mpl1338 last edited by

                                          Ist es möglich einen Historygraph als popup zu öffnen?

                                          M 1 Reply Last reply Reply Quote 0
                                          • M
                                            MCU @mpl1338 last edited by

                                            @mpl1338 Nein, ein eChart / grafana als iFrame schon.
                                            https://mcuiobroker.gitbook.io/jarvis-infos/jarvis-v3/besonderheiten-v3/styles/statelist-1/statelist-popup#grafana-iframe-popup-bloody

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            623
                                            Online

                                            31.7k
                                            Users

                                            79.7k
                                            Topics

                                            1.3m
                                            Posts

                                            jarvis material material ui materialdesign vis visualisierung visualization
                                            252
                                            4481
                                            2283409
                                            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