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

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    jarvis v3.0.0 - just another remarkable vis

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

      @meto304
      https://mcuiobroker.gitbook.io/jarvis-infos/jarvis/besonderheiten-v3/styles/switchaction

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

        @mcu mega...👍

        1 Reply Last reply Reply Quote 1
        • W
          wiki @Dominik F. last edited by

          Hallo zusammen,
          melde mich mit meinem HistoryGraph-Problem zurück.

          Symptom:
          HistoryGraphen lauf in einen [object][Object] Fehler.

          Steps-To-Repro:
          Ich habe meine HGraphen inzwischen auf jeweils einen eigenen Tab ausgelagert, um besser testen zu können.
          Tabs nacheinander ruhig aufrufen. Die Grafen werden normalerweise beim ersten Aufruf noch sauber erzeugt.
          Ein wenig hin und her klicken - ohne große Hektik.
          Dann passiert es.

          b42cc08a-a4c8-40a2-83d3-e1a638d30eee-grafik.png

          5a33fe0c-fa1e-4f6c-aead-fd5e5c377b26-grafik.png

          Das spannende ist nun, dass ich das Datum im Fehler beinflussen kann,
          indem ich beim InfluxDB Adapter die Vorhaltezeit ändere. (Daher ist das Datum auf den Bildern auch mal 12 und mal 6 Monate zurück.)

          Hier die Daten ausm Debug, was mir komisch vorkommt:

          # DEBUG-Log von Jarvis & InfluxDB2
          
          2022-01-22 17:35:45.221  - debug: influxdb.0 (1908) Measurement tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage is of type Boolean - skipping aggregation options
          
          #
          # Hier kommt die Stelle, die verdächtig aussieht.
          # Offenbar fragt Jarvis nicht nur die letzten X Tage zurück ab, sondern auch noch den allerersten Datenpunkt vor X Monaten. 
          # Wenn ich die Vorhaltezeit im Adapter ändere, ändert es sich auch in dieser Fehlermledung.
          # 
          
          2022-01-22 17:35:45.222  - debug: influxdb.0 (1908) History-queries to execute: 
          from(bucket: "iobroker")  |> range(start: 2021-07-09T16:35:39.880Z, stop: 2022-01-08T16:35:39.880Z)     |> filter(fn: (r) => r["_measurement"] == "tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage") 	|> pivot(rowKey:["_time"], columnKey: ["_field"], valueColumn: "_value") |> sort(columns: ["_time"], desc: true)  	|> group() 	|> limit(n: 1),
          from(bucket: "iobroker")  |> range(start: 2022-01-08T16:35:39.880Z, stop: 2022-01-22T16:35:39.880Z) 	|> filter(fn: (r) => r["_measurement"] == "tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage") 	|> pivot(rowKey:["_time"], columnKey: ["_field"], valueColumn: "_value") 											|> group() 	|> limit(n: 9999999),
          from(bucket: "iobroker")  |> range(start: 2022-01-22T16:35:39.880Z)                 					|> filter(fn: (r) => r["_measurement"] == "tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage")  	|> pivot(rowKey:["_time"], columnKey: ["_field"], valueColumn: "_value") |> sort(columns: ["_time"], desc: false) 	|> group() 	|> limit(n: 1)
          
          # Ausführung Query-Teil I:
          2022-01-22 17:35:45.222  - debug: influxdb.0 (1908) Query to execute: 
          from(bucket: "iobroker")  |> range(start: 2021-07-09T16:35:39.880Z, stop: 2022-01-08T16:35:39.880Z)     |> filter(fn: (r) => r["_measurement"] == "tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage")                 |> pivot(rowKey:["_time"], columnKey: ["_field"], valueColumn: "_value")                |> sort(columns: ["_time"], desc: true)                 |> group()                 |> limit(n: 1)
          
          # Fehler bei Ausfürhung Teil I - klar DB existierte ja noch nicht.
          2022-01-22 17:35:56.911  - warn: influxdb.0 (1908) Error in query "
          from(bucket: "iobroker")  |> range(start: 2021-07-09T16:35:39.880Z, stop: 2022-01-08T16:35:39.880Z)     |> filter(fn: (r) => r["_measurement"] == "tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage")                 |> pivot(rowKey:["_time"], columnKey: ["_field"], valueColumn: "_value")                |> sort(columns: ["_time"], desc: true)                 |> group()                 |> limit(n: 1)": RequestTimedOutError: Request timed out
          
          # Ausführung Query-Teil II:
          2022-01-22 17:35:56.911  - debug: influxdb.0 (1908) Query to execute: 
          from(bucket: "iobroker")  |> range(start: 2022-01-08T16:35:39.880Z, stop: 2022-01-22T16:35:39.880Z) 	|> filter(fn: (r) => r["_measurement"] == "tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage") |> pivot(rowKey:["_time"], columnKey: ["_field"], valueColumn: "_value") |> group() |> limit(n: 9999999)
          
          # Ausführung Query-Teil III:
          2022-01-22 17:35:58.792  - debug: influxdb.0 (1908) Query to execute: from(bucket: "iobroker")                 |> range(start: 2022-01-22T16:35:39.880Z)                 |> filter(fn: (r) => r["_measurement"] == "tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage")                 |> pivot(rowKey:["_time"], columnKey: ["_field"], valueColumn: "_value")                |> sort(columns: ["_time"], desc: false)                 |> group()                 |> limit(n: 1)
          
          2022-01-22 17:36:00.454  - warn: jarvis.0 (1876) [object Object]
          
          # Daten erhalten von Query-Teil II:
          2022-01-22 17:35:59.614  - debug: influxdb.0 (1908) Parsing retrieved rows:[
          [],
          [{"result":"_result","table":0,"_start":"2022-01-08T16:35:39.88Z","_stop":"2022-01-22T16:35:39.88Z","_time":"2022-01-08T16:35:50.919Z","_measurement":"tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage","ack":true,"from":"system.adapter.influxdb.0","q":0,"value":44.5,"time":"2022-01-08T16:35:50.919Z"},
          {"result":"_result","table":0,"_start":"2022-01-08T16:35:39.88Z","_stop":"2022-01-22T16:35:39.88Z","_time":"2022-01-08T16:36:50.92Z","_measurement":"tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage","ack":true,"from":"system.adapter.influxdb.0","q":0,"value":44.5,"time":"2022-01-08T16:36:50.92Z"},
          ...
          {"result":"_result","table":0,"_start":"2022-01-08T16:35:39.88Z","_stop":"2022-01-22T16:35:39.88Z","_time":"2022-01-22T16:29:11.726Z","_measurement":"tado.0.667342.Rooms.4.sensorDataPoints.humidity.percentage","ack":true,"from":"system.adapter.tado.0","q":0,"value":39.7,"time":"2022-01-22T16:29:11.726Z"}],[]]
          
          # Daten Rückmeldung an Jarvis:
          2022-01-22 17:35:59.936  - debug: influxdb.0 (1908) sendTo "getHistory" to system.adapter.jarvis.0 from system.adapter.influxdb.0
          
          

          .
          Hat jemand eine Idee?

          grüße

          1 Reply Last reply Reply Quote 0
          • M
            MCU @Dominik F. last edited by MCU

            @dominik-f
            Ganze normale HTML-DP wieder ohne Anzeigevariante.

            .jarvis-device-DEINE_ID .jarvis-StateListItem-Popup:nth-child(2) .jarvis-StateListItem-Body {
            	display: none !important;
            }
            
            .jarvis-device-DEINE_ID .jarvis-StateListItem-Popup:nth-child(2) .q-item__section--avatar {
            	display: none !important;
            }
            
            .jarvis-device-DEINE_ID .jarvis-StateListItem-Popup:nth-child(2)  .jarvis-StateListItem-Action-primaryStateKey {
            	width: 600px !important;
            }
            
            Dominik F. 1 Reply Last reply Reply Quote 0
            • Dominik F.
              Dominik F. @MCU last edited by

              @mcu

              Das verändert gar nichts, Icon und Text sind auch wieder da

              M 1 Reply Last reply Reply Quote 0
              • M
                MCU @Dominik F. last edited by MCU

                @dominik-f Also du musst die nth-child(x) einstellen auf Deinen Wert
                Wieviel Elemente sind im Popup und wo ist das?

                .jarvis-device-DEINE_ID .jarvis-StateListItem-Popup:nth-child(1) .jarvis-StateListItem-Body {
                	display: none !important;
                }
                 
                .jarvis-device-DEINE_ID .jarvis-StateListItem-Popup:nth-child(1) .q-item__section--avatar {
                	display: none !important;
                }
                 
                .jarvis-device-DEINE_ID .jarvis-StateListItem-Popup:nth-child(1)  .jarvis-StateListItem-Action-primaryStateKey {
                	width: 600px !important;
                }
                
                

                Zeig mal Deine Einträge.

                Dominik F. 1 Reply Last reply Reply Quote 0
                • Dominik F.
                  Dominik F. @MCU last edited by

                  @mcu

                  Das hat nun die Tabelle verändert. Icon und Text ist wieder weg.

                  Jetzt sieht die Tabelle auf dem PC folgendermaßen aus:

                  Unbenannt.PNG

                  M 1 Reply Last reply Reply Quote 0
                  • M
                    MCU @Dominik F. last edited by MCU

                    @dominik-f Dann nimm mal weniger px -> 400px

                    Dominik F. 1 Reply Last reply Reply Quote 0
                    • Dominik F.
                      Dominik F. @MCU last edited by Dominik F.

                      @mcu

                      egal was ich an px einstelle, die es verändert nichts.

                      ps.: es verändert sich nur auf dem Handy was

                      M 1 Reply Last reply Reply Quote 0
                      • M
                        MCU @Dominik F. last edited by

                        @dominik-f Geh mal in den DP, und ändere dort die width
                        3320483d-53cb-4306-afad-28c3e8577923-image.png

                        content="width = 100%,

                        den Rest so lassen.

                        Dominik F. 2 Replies Last reply Reply Quote 0
                        • Dominik F.
                          Dominik F. @MCU last edited by

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

                          content="width = 100%

                          Leider keine Veränderung

                          1 Reply Last reply Reply Quote 0
                          • Dominik F.
                            Dominik F. @MCU last edited by

                            @mcu

                            Ich hab ne Idee....ich gehe jetzt mal davon aus, dass das Problem vor dem Bildschirm sitzt. Ich schreibe dir jetzt mal auf was ich genau erstellt hab etc und dann können wir zumindestens ausschließen das ich eventuell was grundlegendes falsch gemacht habe

                            M 1 Reply Last reply Reply Quote 0
                            • M
                              MCU @Dominik F. last edited by

                              @dominik-f Das hängt mit der Tabelle zusammen.
                              e407307a-4c30-4306-a4ac-ecbf93867c54-image.png

                              Dominik F. 1 Reply Last reply Reply Quote 0
                              • Dominik F.
                                Dominik F. @MCU last edited by

                                @mcu

                                Dann bin ich da schon mal froh 😄

                                M 1 Reply Last reply Reply Quote 0
                                • M
                                  MCU @Dominik F. last edited by

                                  @dominik-f
                                  c4f24374-1802-462d-8c62-6258fc3418c5-image.png

                                  Dominik F. 1 Reply Last reply Reply Quote 0
                                  • Dominik F.
                                    Dominik F. @MCU last edited by

                                    @mcu

                                    das sieht doch schon mal gut aus

                                    M 1 Reply Last reply Reply Quote 0
                                    • M
                                      MCU @Dominik F. last edited by MCU

                                      @dominik-f

                                      .jarvis-device-DEINE-ID .jarvis-StateListItem-Popup:nth-child(1) .jarvis-StateListItem-Body {
                                      	display: none !important;
                                      }
                                      
                                      .jarvis-device-DEINE-ID .jarvis-StateListItem-Popup:nth-child(1) .q-item__section--avatar {
                                      	display: none !important;
                                      }
                                      
                                      .jarvis-device-DEINE-ID .jarvis-StateListItem-Popup:nth-child(1)  .jarvis-StateListItem-Action-primaryStateKey {
                                      	width: 100% !important;
                                      	max-width: 100% !important;
                                      }
                                      
                                      .jarvis-device-DEINE-ID .jarvis-StateListItem-Popup:nth-child(1)  .jarvis-State {
                                      	width: 400px;
                                      }
                                      
                                      .jarvis-device-DEINE-ID .jarvis-StateListItem-Popup:nth-child(1) {
                                      	justify-content: center;
                                      }
                                      
                                      

                                      Du musst aber im Programm für die Erstellung von der Tabelle die font-size ändern von 3vw auf 14px
                                      3d28de95-1169-4542-ad3b-71c126494560-image.png

                                      Dominik F. 1 Reply Last reply Reply Quote 0
                                      • Dominik F.
                                        Dominik F. @MCU last edited by

                                        @mcu

                                        Was eine lange Geburt^^ Das war es 🙂

                                        Das bedeutet, ich muss den Verfasser des Skriptes mit ins Boot holen.

                                        Was jetzt noch verwunderlich ist, ist das die linke Spalte rechts angeordnet ist, die rechte links.
                                        Wenn ich die Tabelle als statehtml einfüge, ist das nicht der Fall.
                                        Den Unterschied kann man im Pop Up und links daneben sehen.

                                        Unbenannt.PNG

                                        So siehts nun auf dem Handy aus:

                                        Screenshot_20220123-232558_Chrome.jpg

                                        Ich muss aber dazu sagen, dass ich mit der Lösung schon sehr gut leben kann.

                                        M 1 Reply Last reply Reply Quote 0
                                        • M
                                          MCU @Dominik F. last edited by MCU

                                          @dominik-f Jetzt kannst du ja mit den px spielen.
                                          Hattest du da schon die font-size geändert?

                                          Dominik F. 1 Reply Last reply Reply Quote 1
                                          • F
                                            Fefi last edited by

                                            Reinfolge der Widget ändern.
                                            In der Desktop Ansicht klappt alles wunderbar und man kann alles schieben wie man es braucht.
                                            Sobald ich das aber per Handy öffne, ist die Reinfolgeder Widgets die Reinfolge in der sie hinzugefügt wurden. Kann man das umgehen ohne eine separate vis für das Handy anzulegen?
                                            Gruß Felix

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            668
                                            Online

                                            31.7k
                                            Users

                                            79.8k
                                            Topics

                                            1.3m
                                            Posts

                                            jarvis material material ui materialdesign vis visualisierung visualization
                                            253
                                            4483
                                            2414047
                                            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