Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. jarvis v3.1.x - just another remarkable vis

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.6k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    2.1k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    16
    1
    2.9k

jarvis v3.1.x - just another remarkable vis

Geplant Angeheftet Gesperrt Verschoben Tester
jarvismaterialmaterial uimaterialdesignvisvisualisierungvisualization
1.8k Beiträge 92 Kommentatoren 725.8k Aufrufe 77 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • M MCU

    @alen
    Ist das dann nicht eigentlich ein Problem vom fronius-wattpilot-Adapter?
    Der übermittelt die Daten ja anscheinend nicht vollständig?
    Dann müsste man evtl ein Skript nutzen, um es nachzuziehen?

    AlenA Offline
    AlenA Offline
    Alen
    schrieb am zuletzt editiert von
    #1239

    @mcu ja wahrscheinlich schon. Ich verstehe auch nicht, wieso man den Mode nicht direkt setzen kann.

    M 1 Antwort Letzte Antwort
    0
    • AlenA Alen

      @mcu ja wahrscheinlich schon. Ich verstehe auch nicht, wieso man den Mode nicht direkt setzen kann.

      M Online
      M Online
      MCU
      schrieb am zuletzt editiert von MCU
      #1240

      @alen Ich versuch es direkt in Jarvis zu lösen, kann aber nichts versprechen.
      Wie gesagt sonst ein Script erstellen, mit dem man den Zustand entsprechend anpasst.

      NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
      Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

      1 Antwort Letzte Antwort
      0
      • stephan1827S stephan1827

        @mcu Besten Dank, mache es jetzt doch über Bilder die alle 10 Sekunden neu geladen werden. Live stream wird wahrscheinlich auch zu lahm.

        AlenA Offline
        AlenA Offline
        Alen
        schrieb am zuletzt editiert von
        #1241

        @stephan1827 said in jarvis v3.1.x - just another remarkable vis:

        @mcu Besten Dank, mache es jetzt doch über Bilder die alle 10 Sekunden neu geladen werden. Live stream wird wahrscheinlich auch zu lahm.

        Falls noch Interesse besteht. Ich habe es geschafft meine Reolinks Kameras als RTSP Videostream in einem Jarvis iframe darzustellen. Musste aber den Umweg über Frigate/RTC gehen (damit ist der RTPS stream als http link verfügbar). Damit kann aber auch auf Aufnahmen machen oder Detection. Von der Performance her passt es auch.

        M 1 Antwort Letzte Antwort
        0
        • AlenA Alen

          @stephan1827 said in jarvis v3.1.x - just another remarkable vis:

          @mcu Besten Dank, mache es jetzt doch über Bilder die alle 10 Sekunden neu geladen werden. Live stream wird wahrscheinlich auch zu lahm.

          Falls noch Interesse besteht. Ich habe es geschafft meine Reolinks Kameras als RTSP Videostream in einem Jarvis iframe darzustellen. Musste aber den Umweg über Frigate/RTC gehen (damit ist der RTPS stream als http link verfügbar). Damit kann aber auch auf Aufnahmen machen oder Detection. Von der Performance her passt es auch.

          M Online
          M Online
          MCU
          schrieb am zuletzt editiert von MCU
          #1242

          @alen Es gibt auch Adapter mit dem man Kameras mit RTSP-Stream integrieren kann.
          52f14d39-521d-4f06-965b-d77b73b56f96-image.png
          https://mcuiobroker.gitbook.io/jarvis-infos/jarvis-v3/besonderheiten-v3/module/iframe-v3/rtsp-kamera-reolink-e1-pro-einbinden

          Wenn du Deine Variante im Einzelnen vorstellen möchtest, so detailliert wie möglich, dann nehme ich es gerne in die Doku auf.
          Danke.

          NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
          Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

          1 Antwort Letzte Antwort
          0
          • M MCU

            @bigstephan Etwas komplizierter:
            26d5fe34-2a7e-418c-b0ac-1c96cc3f9138-image.png

            Man muss dafür eine eigene Scripts-Funktion anlegen.
            Vorraussetzung ist PRO und wifi-on als Klasse in Styles (siehe Doku) hinterlegt.

            function valPlusIcon(val){
            // return 'Test';
            let html = '';
            html+=  '<div><table>';
            html+=  '<tr><td>'+val+' %</td>';
            html+=  '<td><span class="wifi-on"> </span></td></tr></table>';
            html+=  '</div>'
            
            return html;
            }
            

            Diese Funktion nutzt man dann in der Anzeigevarainte:

            {"default":"valPlusIcon({val})"}
            
            W Offline
            W Offline
            Wahl-HHer
            schrieb am zuletzt editiert von
            #1243

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

            {"default":"valPlusIcon({val})"}

            Dabei bekomme ich folgende Fehlermeldung:
            e3157047-429f-45d0-9ece-635746845202-grafik.png

            Anzeigevariante im Gerät:
            da783970-d6ca-4663-8da5-1b9558792c8d-grafik.png

            Funktion in Scripts:
            9fd19b95-9878-412b-9c11-31bd27aca88d-grafik.png

            styles:
            752c3bc5-9690-453e-928d-2ba17d9c18eb-grafik.png

            Anzeige:
            27562f0d-abc9-4668-a1fa-aafebe032d1e-grafik.png

            Was mache ich falsch?

            M 1 Antwort Letzte Antwort
            0
            • W Wahl-HHer

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

              {"default":"valPlusIcon({val})"}

              Dabei bekomme ich folgende Fehlermeldung:
              e3157047-429f-45d0-9ece-635746845202-grafik.png

              Anzeigevariante im Gerät:
              da783970-d6ca-4663-8da5-1b9558792c8d-grafik.png

              Funktion in Scripts:
              9fd19b95-9878-412b-9c11-31bd27aca88d-grafik.png

              styles:
              752c3bc5-9690-453e-928d-2ba17d9c18eb-grafik.png

              Anzeige:
              27562f0d-abc9-4668-a1fa-aafebe032d1e-grafik.png

              Was mache ich falsch?

              M Online
              M Online
              MCU
              schrieb am zuletzt editiert von MCU
              #1244

              @wahl-hher Hast du PRO?
              Version von jarvis?

              NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
              Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

              W 1 Antwort Letzte Antwort
              0
              • M MCU

                @wahl-hher Hast du PRO?
                Version von jarvis?

                W Offline
                W Offline
                Wahl-HHer
                schrieb am zuletzt editiert von
                #1245

                @mcu
                Ja, ich habe die PRO.
                Jarvis 3.1.8

                M 1 Antwort Letzte Antwort
                0
                • W Wahl-HHer

                  @mcu
                  Ja, ich habe die PRO.
                  Jarvis 3.1.8

                  M Online
                  M Online
                  MCU
                  schrieb am zuletzt editiert von
                  #1246

                  @wahl-hher Geh mal bitte auf v3.1.9-beta.2
                  Adapter->Expertenmodus einschalten -> Katze -> Benutzerdefiniert

                  https://github.com/Zefau/ioBroker.jarvis/tree/31ad221a4171597a434fff0b41d75dd7d09d6d6c
                  

                  NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                  Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                  W 1 Antwort Letzte Antwort
                  0
                  • M MCU

                    @wahl-hher Geh mal bitte auf v3.1.9-beta.2
                    Adapter->Expertenmodus einschalten -> Katze -> Benutzerdefiniert

                    https://github.com/Zefau/ioBroker.jarvis/tree/31ad221a4171597a434fff0b41d75dd7d09d6d6c
                    
                    W Offline
                    W Offline
                    Wahl-HHer
                    schrieb am zuletzt editiert von
                    #1247

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

                    https://github.com/Zefau/ioBroker.jarvis/tree/31ad221a4171597a434fff0b41d75dd7d09d6d6c

                    Bringt den selben Fehler.

                    M 1 Antwort Letzte Antwort
                    0
                    • W Wahl-HHer

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

                      https://github.com/Zefau/ioBroker.jarvis/tree/31ad221a4171597a434fff0b41d75dd7d09d6d6c

                      Bringt den selben Fehler.

                      M Online
                      M Online
                      MCU
                      schrieb am zuletzt editiert von MCU
                      #1248

                      @wahl-hher Was steht im LOG -> F12 drücken?
                      Die function mal reinstellen. In Code-tags -> </>

                      NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                      Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                      W 1 Antwort Letzte Antwort
                      0
                      • M MCU

                        @wahl-hher Was steht im LOG -> F12 drücken?
                        Die function mal reinstellen. In Code-tags -> </>

                        W Offline
                        W Offline
                        Wahl-HHer
                        schrieb am zuletzt editiert von
                        #1249
                        Uncaught SyntaxError: '' string literal contains an unescaped line break
                            useCustomTag http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:108
                            onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            promise callback*Po</onConnect/</</</< http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            callWithErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            callWithAsyncErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            V http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            doWatch http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            watch http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            promise callback*Po</onConnect/< http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            promise callback*onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            created http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            promise callback*created http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            callWithErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            callWithAsyncErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            callHook$1 http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            applyOptions http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            finishComponentSetup http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            handleSetupResult http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            setupStatefulComponent http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            setupComponent http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            oe http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            ie http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            B http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            ge http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            mount http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            mount http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            start$2 http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            Po http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            promise callback*Po</< http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            promise callback*Po< http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            ko http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            <anonymous> http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1871
                        index.html:5:18
                            useCustomTag http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:108
                            onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            (Async: promise callback)
                            onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            callWithErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            callWithAsyncErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            V http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            doWatch http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            watch http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            (Async: promise callback)
                            onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            (Async: promise callback)
                            onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            created http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            (Async: promise callback)
                            created http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            callWithErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            callWithAsyncErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            callHook$1 http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            applyOptions http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            finishComponentSetup http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            handleSetupResult http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            setupStatefulComponent http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            setupComponent http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            oe http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            ie http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            B http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            ge http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            mount http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            mount http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            start$2 http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            InterpretGeneratorResume self-hosted:1469
                            AsyncFunctionNext self-hosted:852
                            (Async: async)
                            Po http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            (Async: promise callback)
                            Po http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            (Async: promise callback)
                            Po http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                            ko http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                            <anonym> http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1871
                        

                        Die Funktion:

                        function valPlusIcon(val){
                        // return 'Test';
                            let html = '';
                            html+=  '<div><table>';
                            html+=  '<tr>
                            /* Zeilen vertauscht */
                            html+=  '<td><span class="snowflake"> </span></td>';
                            html+=  '<td>'+val+'</td>';
                            /* ----- */
                            html+=  '</tr>;
                            html+=  '</table>';
                            html+=  '</div>'
                            return html;
                        }
                        
                        M 1 Antwort Letzte Antwort
                        0
                        • W Wahl-HHer
                          Uncaught SyntaxError: '' string literal contains an unescaped line break
                              useCustomTag http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:108
                              onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              promise callback*Po</onConnect/</</</< http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              callWithErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              callWithAsyncErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              V http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              doWatch http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              watch http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              promise callback*Po</onConnect/< http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              promise callback*onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              created http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              promise callback*created http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              callWithErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              callWithAsyncErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              callHook$1 http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              applyOptions http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              finishComponentSetup http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              handleSetupResult http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              setupStatefulComponent http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              setupComponent http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              oe http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              ie http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              B http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              ge http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              mount http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              mount http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              start$2 http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              Po http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              promise callback*Po</< http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              promise callback*Po< http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              ko http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              <anonymous> http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1871
                          index.html:5:18
                              useCustomTag http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:108
                              onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              (Async: promise callback)
                              onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              callWithErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              callWithAsyncErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              V http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              doWatch http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              watch http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              (Async: promise callback)
                              onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              (Async: promise callback)
                              onConnect http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              created http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              (Async: promise callback)
                              created http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              callWithErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              callWithAsyncErrorHandling http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              callHook$1 http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              applyOptions http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              finishComponentSetup http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              handleSetupResult http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              setupStatefulComponent http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              setupComponent http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              oe http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              ie http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              B http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              ge http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              mount http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              mount http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              start$2 http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              InterpretGeneratorResume self-hosted:1469
                              AsyncFunctionNext self-hosted:852
                              (Async: async)
                              Po http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              (Async: promise callback)
                              Po http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              (Async: promise callback)
                              Po http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:112
                              ko http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1
                              <anonym> http://192.168.150.8:8082/jarvis/js/index-566ba00e.js:1871
                          

                          Die Funktion:

                          function valPlusIcon(val){
                          // return 'Test';
                              let html = '';
                              html+=  '<div><table>';
                              html+=  '<tr>
                              /* Zeilen vertauscht */
                              html+=  '<td><span class="snowflake"> </span></td>';
                              html+=  '<td>'+val+'</td>';
                              /* ----- */
                              html+=  '</tr>;
                              html+=  '</table>';
                              html+=  '</div>'
                              return html;
                          }
                          
                          M Online
                          M Online
                          MCU
                          schrieb am zuletzt editiert von
                          #1250

                          @wahl-hher

                          function valPlusIcon(val){
                              let html = '';
                              html+=  '<div><table>';
                              html+=  '<tr>';
                              html+=  '<td><span class="snowflake"> </span></td>';
                              html+=  '<td>'+val+'</td>';
                              html+=  '</tr>';
                              html+=  '</table>';
                              html+=  '</div>'
                              return html;
                          }
                          

                          NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                          Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                          W 1 Antwort Letzte Antwort
                          1
                          • M MCU

                            @wahl-hher

                            function valPlusIcon(val){
                                let html = '';
                                html+=  '<div><table>';
                                html+=  '<tr>';
                                html+=  '<td><span class="snowflake"> </span></td>';
                                html+=  '<td>'+val+'</td>';
                                html+=  '</tr>';
                                html+=  '</table>';
                                html+=  '</div>'
                                return html;
                            }
                            
                            W Offline
                            W Offline
                            Wahl-HHer
                            schrieb am zuletzt editiert von
                            #1251

                            :+1:
                            Funktioniert.
                            Auch in der 3.1.8.
                            Vielen Dank für die schnelle Hilfe.

                            1 Antwort Letzte Antwort
                            0
                            • M MCU

                              @apachelance Versuch es mal mit v3.1.9-beta.2.
                              ->
                              Katze->Benutzerdefiniert
                              https://github.com/Zefau/ioBroker.jarvis/tree/31ad221a4171597a434fff0b41d75dd7d09d6d6c

                              ? Offline
                              ? Offline
                              Ein ehemaliger Benutzer
                              schrieb am zuletzt editiert von
                              #1252

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

                              @apachelance Versuch es mal mit v3.1.9-beta.2.
                              ->
                              Katze->Benutzerdefiniert
                              https://github.com/Zefau/ioBroker.jarvis/tree/31ad221a4171597a434fff0b41d75dd7d09d6d6c

                              Das hat nicht geklappt. Das Wetterwidget ist nicht aktuell, wenn der Tag sich ändert. Stattdessen kommt jetzt häufiger dieser Fehler, der nach einem Reload der Seite verschwindet:

                              Screenshot 2023-11-14 083718.jpg

                              M 1 Antwort Letzte Antwort
                              0
                              • ? Ein ehemaliger Benutzer

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

                                @apachelance Versuch es mal mit v3.1.9-beta.2.
                                ->
                                Katze->Benutzerdefiniert
                                https://github.com/Zefau/ioBroker.jarvis/tree/31ad221a4171597a434fff0b41d75dd7d09d6d6c

                                Das hat nicht geklappt. Das Wetterwidget ist nicht aktuell, wenn der Tag sich ändert. Stattdessen kommt jetzt häufiger dieser Fehler, der nach einem Reload der Seite verschwindet:

                                Screenshot 2023-11-14 083718.jpg

                                M Online
                                M Online
                                MCU
                                schrieb am zuletzt editiert von MCU
                                #1253

                                @apachelance Mehr kann ich leider nicht tun und anbieten.
                                Das ist die letzte relativ funktionierende Version.
                                Musst du für Dich entscheiden, ob du dann wieder zurück möchtest.

                                NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                                Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                                1 Antwort Letzte Antwort
                                0
                                • ? Offline
                                  ? Offline
                                  Ein ehemaliger Benutzer
                                  schrieb am zuletzt editiert von
                                  #1254

                                  ...anderes Thema: hat jemand eine Idee, warum die Farbwerte bei den States nicht einheitlich sind. Mal ist es helleres, mal dunkleres Grau:

                                  2d6a86b6-d145-47d3-9a59-78d37ab8d4f5-image.png

                                  Zusätzliche CSS-Styles sind nicht aktiv.

                                  M 1 Antwort Letzte Antwort
                                  0
                                  • ? Ein ehemaliger Benutzer

                                    ...anderes Thema: hat jemand eine Idee, warum die Farbwerte bei den States nicht einheitlich sind. Mal ist es helleres, mal dunkleres Grau:

                                    2d6a86b6-d145-47d3-9a59-78d37ab8d4f5-image.png

                                    Zusätzliche CSS-Styles sind nicht aktiv.

                                    M Online
                                    M Online
                                    MCU
                                    schrieb am zuletzt editiert von
                                    #1255

                                    @apachelance Kannst du mal bitte mit der Maus jeweils auf den Text gehen und dann die rechte Maustaste drücken.
                                    Dann kommt rechts eine Anzeige -> posten von beiden "unterschiedlichen" Stellen.

                                    NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                                    Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                                    ? 1 Antwort Letzte Antwort
                                    0
                                    • M MCU

                                      @apachelance Kannst du mal bitte mit der Maus jeweils auf den Text gehen und dann die rechte Maustaste drücken.
                                      Dann kommt rechts eine Anzeige -> posten von beiden "unterschiedlichen" Stellen.

                                      ? Offline
                                      ? Offline
                                      Ein ehemaliger Benutzer
                                      schrieb am zuletzt editiert von
                                      #1256

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

                                      @apachelance Kannst du mal bitte mit der Maus jeweils auf den Text gehen und dann die rechte Maustaste drücken.
                                      Dann kommt rechts eine Anzeige -> posten von beiden "unterschiedlichen" Stellen.

                                      Was meinst du? Wenn ich mit rechter Maustaste klicke, kommt nur das Kontextmenü des Browser.

                                      Ich hab mal mit dem Inspektor 3 Screenshots gemacht:

                                      5ffacb6f-fedf-4cbb-a6f4-400e08e2d7fd-image.png

                                      1baa61a3-f71d-4fb5-9751-674c3354be95-image.png

                                      7327146f-fc42-4c09-8fdf-85bc824adc06-image.png

                                      M 1 Antwort Letzte Antwort
                                      0
                                      • ? Ein ehemaliger Benutzer

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

                                        @apachelance Kannst du mal bitte mit der Maus jeweils auf den Text gehen und dann die rechte Maustaste drücken.
                                        Dann kommt rechts eine Anzeige -> posten von beiden "unterschiedlichen" Stellen.

                                        Was meinst du? Wenn ich mit rechter Maustaste klicke, kommt nur das Kontextmenü des Browser.

                                        Ich hab mal mit dem Inspektor 3 Screenshots gemacht:

                                        5ffacb6f-fedf-4cbb-a6f4-400e08e2d7fd-image.png

                                        1baa61a3-f71d-4fb5-9751-674c3354be95-image.png

                                        7327146f-fc42-4c09-8fdf-85bc824adc06-image.png

                                        M Online
                                        M Online
                                        MCU
                                        schrieb am zuletzt editiert von
                                        #1257

                                        @apachelance Jetzt wären dazu die entsprechenden Geräte-DPs interessant.
                                        Fenster
                                        f332ffe0-d658-4e81-a9a2-8a4f04d035ec-image.png
                                        Ladestatus
                                        3132c6f0-0908-4c8c-bd66-e417d445866b-image.png
                                        Büro-Balkon
                                        19a037e5-6f19-4f41-97c9-f2eab89e945c-image.png

                                        NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                                        Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                                        ? 1 Antwort Letzte Antwort
                                        0
                                        • M MCU

                                          @apachelance Jetzt wären dazu die entsprechenden Geräte-DPs interessant.
                                          Fenster
                                          f332ffe0-d658-4e81-a9a2-8a4f04d035ec-image.png
                                          Ladestatus
                                          3132c6f0-0908-4c8c-bd66-e417d445866b-image.png
                                          Büro-Balkon
                                          19a037e5-6f19-4f41-97c9-f2eab89e945c-image.png

                                          ? Offline
                                          ? Offline
                                          Ein ehemaliger Benutzer
                                          schrieb am zuletzt editiert von
                                          #1258

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

                                          @apachelance Jetzt wären dazu die entsprechenden Geräte-DPs interessant.

                                          Bitteschön:

                                          Fenster:
                                          93aab2da-6ce8-4e52-a67b-38b62acff0b0-image.png

                                          Ladestatus:
                                          6e135456-dc81-4814-9b1d-c830f2e06e07-image.png

                                          Büro Balkon:
                                          950aefe6-326e-4b3d-a73b-298e4619c8e9-image.png

                                          M 1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          352

                                          Online

                                          32.4k

                                          Benutzer

                                          81.5k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe