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

  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. jarvis v2.2.0 - just another remarkable vis

NEWS

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

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

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

jarvis v2.2.0 - just another remarkable vis

Geplant Angeheftet Gesperrt Verschoben Tester
jarvismaterialmaterial uimaterialdesignvisvisualisierungvisualization
6.1k Beiträge 316 Kommentatoren 4.2m Aufrufe 273 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

    @schuetzeschulz
    Next one:

    <!DOCTYPE HTML>
    <html>
     
    <head>
        <title> </title>
        <style> #container {text-align: center; height: 100%;} .button { color: #333; background-color: #fff; border-color: #ccc;  font-size: 14px; font-weight: 400; border: 1px solid black; border-radius: 4px;  cursor: pointer;  line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; padding: 6px 12px;}
        </style>
        <script> 
    	setTimeout(function(){
    	        var button = document.querySelector('#container .button');
            	button.addEventListener('click', fullscreen);
            	document.addEventListener('webkitfullscreenchange', fullscreenChange);
            	document.addEventListener('mozfullscreenchange', fullscreenChange);
            	document.addEventListener('fullscreenchange', fullscreenChange);
            	document.addEventListener('MSFullscreenChange', fullscreenChange);
    	},1000); 
            function fullscreen() {
                // check if fullscreen mode is available
                if (document.fullscreenEnabled || 
                    document.webkitFullscreenEnabled || 
                    document.mozFullScreenEnabled ||
                    document.msFullscreenEnabled) {
        
                    // which element will be fullscreen
                    var iframe = document.querySelector('#container iframe');
                    // Do fullscreen
                    if (iframe.requestFullscreen) {
                        iframe.requestFullscreen();
                    } else if (iframe.webkitRequestFullscreen) {
                        iframe.webkitRequestFullscreen();
                    } else if (iframe.mozRequestFullScreen) {
                        iframe.mozRequestFullScreen();
                    } else if (iframe.msRequestFullscreen) {
                        iframe.msRequestFullscreen();
                    }
                }
                else {
                    document.querySelector('.error').innerHTML = 'Your browser is not supported';
                }
            }
     
            function fullscreenChange() {
                if (document.fullscreenEnabled ||
                    document.webkitIsFullScreen || 
                    document.mozFullScreen ||
                    document.msFullscreenElement) {
                        console.log('enter fullscreen');
                    }
                else {
                    console.log('exit fullscreen');
                }
                // force to reload iframe once to prevent the iframe source didn't care about trying to resize the window
                // comment this line and you will see
                var iframe = document.querySelector('iframe');
                iframe.src = iframe.src;
            }
            
            function onKlick(elem) { elem.requestFullscreen(); }
        </script>
    </head>
     
    <body style="text-align: center;" id="video1body">
        <div id="container">
            <iFrame width="320px" height="150px" src="URL" onclick="onKlick(this);" frameborder="2"
                allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
                allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen>
            </iFrame>
            <div>
                <button class="button">FullScreen</button>
            </div>
            <div class="error"></div>
        </div>
    </body>
     
    </html>
    
    
    S Offline
    S Offline
    SchuetzeSchulz
    schrieb am zuletzt editiert von
    #5745

    @mcu sagte in jarvis v2.2.0 - just another remarkable vis:

    <!DOCTYPE HTML> <html> <head> <title> </title> <style> #container {text-align: center; height: 100%;} .button { color: #333; background-color: #fff; border-color: #ccc; font-size: 14px; font-weight: 400; border: 1px solid black; border-radius: 4px; cursor: pointer; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; padding: 6px 12px;} </style> <script> setTimeout(function(){ var button = document.querySelector('#container .button'); button.addEventListener('click', fullscreen); document.addEventListener('webkitfullscreenchange', fullscreenChange); document.addEventListener('mozfullscreenchange', fullscreenChange); document.addEventListener('fullscreenchange', fullscreenChange); document.addEventListener('MSFullscreenChange', fullscreenChange); },1000); function fullscreen() { // check if fullscreen mode is available if (document.fullscreenEnabled || document.webkitFullscreenEnabled || document.mozFullScreenEnabled || document.msFullscreenEnabled) { // which element will be fullscreen var iframe = document.querySelector('#container iframe'); // Do fullscreen if (iframe.requestFullscreen) { iframe.requestFullscreen(); } else if (iframe.webkitRequestFullscreen) { iframe.webkitRequestFullscreen(); } else if (iframe.mozRequestFullScreen) { iframe.mozRequestFullScreen(); } else if (iframe.msRequestFullscreen) { iframe.msRequestFullscreen(); } } else { document.querySelector('.error').innerHTML = 'Your browser is not supported'; } } function fullscreenChange() { if (document.fullscreenEnabled || document.webkitIsFullScreen || document.mozFullScreen || document.msFullscreenElement) { console.log('enter fullscreen'); } else { console.log('exit fullscreen'); } // force to reload iframe once to prevent the iframe source didn't care about trying to resize the window // comment this line and you will see var iframe = document.querySelector('iframe'); iframe.src = iframe.src; } function onKlick(elem) { elem.requestFullscreen(); } </script> </head> <body style="text-align: center;" id="video1body"> <div id="container"> <iFrame width="320px" height="150px" src="URL" onclick="onKlick(this);" frameborder="2" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen> </iFrame> <div> <button class="button">FullScreen</button> </div> <div class="error"></div> </div> </body> </html>

    Damit funktioniert das mit dem Button. Also klicke ich auf den Button kommt Vollbild.

    M 1 Antwort Letzte Antwort
    0
    • S SchuetzeSchulz

      @mcu sagte in jarvis v2.2.0 - just another remarkable vis:

      <!DOCTYPE HTML> <html> <head> <title> </title> <style> #container {text-align: center; height: 100%;} .button { color: #333; background-color: #fff; border-color: #ccc; font-size: 14px; font-weight: 400; border: 1px solid black; border-radius: 4px; cursor: pointer; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; padding: 6px 12px;} </style> <script> setTimeout(function(){ var button = document.querySelector('#container .button'); button.addEventListener('click', fullscreen); document.addEventListener('webkitfullscreenchange', fullscreenChange); document.addEventListener('mozfullscreenchange', fullscreenChange); document.addEventListener('fullscreenchange', fullscreenChange); document.addEventListener('MSFullscreenChange', fullscreenChange); },1000); function fullscreen() { // check if fullscreen mode is available if (document.fullscreenEnabled || document.webkitFullscreenEnabled || document.mozFullScreenEnabled || document.msFullscreenEnabled) { // which element will be fullscreen var iframe = document.querySelector('#container iframe'); // Do fullscreen if (iframe.requestFullscreen) { iframe.requestFullscreen(); } else if (iframe.webkitRequestFullscreen) { iframe.webkitRequestFullscreen(); } else if (iframe.mozRequestFullScreen) { iframe.mozRequestFullScreen(); } else if (iframe.msRequestFullscreen) { iframe.msRequestFullscreen(); } } else { document.querySelector('.error').innerHTML = 'Your browser is not supported'; } } function fullscreenChange() { if (document.fullscreenEnabled || document.webkitIsFullScreen || document.mozFullScreen || document.msFullscreenElement) { console.log('enter fullscreen'); } else { console.log('exit fullscreen'); } // force to reload iframe once to prevent the iframe source didn't care about trying to resize the window // comment this line and you will see var iframe = document.querySelector('iframe'); iframe.src = iframe.src; } function onKlick(elem) { elem.requestFullscreen(); } </script> </head> <body style="text-align: center;" id="video1body"> <div id="container"> <iFrame width="320px" height="150px" src="URL" onclick="onKlick(this);" frameborder="2" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen> </iFrame> <div> <button class="button">FullScreen</button> </div> <div class="error"></div> </div> </body> </html>

      Damit funktioniert das mit dem Button. Also klicke ich auf den Button kommt Vollbild.

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

      @schuetzeschulz Zufrieden, oder muss ich noch weiterschauen?

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

      S 1 Antwort Letzte Antwort
      0
      • M MCU

        @schuetzeschulz Zufrieden, oder muss ich noch weiterschauen?

        S Offline
        S Offline
        SchuetzeSchulz
        schrieb am zuletzt editiert von
        #5747

        @mcu Naja, ich würde es "besser" finden, wenn das Vollbild kommt wenn ich auf das Kamerabild drücke/klicke. Also quasi ohne den Button...

        M 1 Antwort Letzte Antwort
        0
        • S SchuetzeSchulz

          @mcu Naja, ich würde es "besser" finden, wenn das Vollbild kommt wenn ich auf das Kamerabild drücke/klicke. Also quasi ohne den Button...

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

          @schuetzeschulz Dafür habe ich keinen Ansatz mehr. Das scheint an der Software für die Anzeige der Kamera zu liegen. Welche Kamera ist das?

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

          S 1 Antwort Letzte Antwort
          0
          • M MCU

            @johannes-bauerstatter
            755efaad-752e-421a-afd1-d470fe665ece-image.png
            Hält der Videostream dann nach 100 Sekunden an?

            Johannes BauerstatterJ Offline
            Johannes BauerstatterJ Offline
            Johannes Bauerstatter
            schrieb am zuletzt editiert von
            #5749

            @mcu Ja, funktioniert auch. War gewollt zum Testen.

            1 Antwort Letzte Antwort
            0
            • M MCU

              @schuetzeschulz Dafür habe ich keinen Ansatz mehr. Das scheint an der Software für die Anzeige der Kamera zu liegen. Welche Kamera ist das?

              S Offline
              S Offline
              SchuetzeSchulz
              schrieb am zuletzt editiert von
              #5750

              @mcu Habe 3 Wansview W3 Kameras im Einsatz.

              1 Antwort Letzte Antwort
              0
              • R Offline
                R Offline
                RkcCorian
                schrieb am zuletzt editiert von
                #5751

                Kenn jemand die CSS um die "Headings" (Überschriften) der Widgets anzupassen? Also Symbolgröße, Transparenz, sowie Schriftgröße? Vielen Dank!

                M 1 Antwort Letzte Antwort
                0
                • R RkcCorian

                  Kenn jemand die CSS um die "Headings" (Überschriften) der Widgets anzupassen? Also Symbolgröße, Transparenz, sowie Schriftgröße? Vielen Dank!

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

                  @rkccorian

                  https://mcuiobroker.gitbook.io/jarvis-infos/jarvis/besonderheiten-v3/styles/statelist-1/.q-item__section--main

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

                  R 1 Antwort Letzte Antwort
                  1
                  • M MCU

                    @rkccorian

                    https://mcuiobroker.gitbook.io/jarvis-infos/jarvis/besonderheiten-v3/styles/statelist-1/.q-item__section--main

                    R Offline
                    R Offline
                    RkcCorian
                    schrieb am zuletzt editiert von
                    #5753

                    @mcu Für .q-item__section--main .q-item__label.text-h6 gibt es (noch) kein jarvis-wasAuchImmerEigenesCss?!

                    M 1 Antwort Letzte Antwort
                    0
                    • R RkcCorian

                      @mcu Für .q-item__section--main .q-item__label.text-h6 gibt es (noch) kein jarvis-wasAuchImmerEigenesCss?!

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

                      @rkccorian Nein. Es gibt jarvis-header, hat aber die Überschrift nicht mit drin? Bin mir grade nicht sicher.
                      .jarvis-widget-header

                      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
                      • S Offline
                        S Offline
                        sicadrip
                        schrieb am zuletzt editiert von
                        #5755

                        @Zefau
                        Ich vermisse in der aktuellen alpha.125 beim DateTime Modul die Einstellung "Style des Textes (JSON Format)". Kommt das wieder dazu?

                        v3.0.0-alpha.125
                        2021-11-15 15_28_59-Window.png
                        v2.3.3
                        2021-11-15 15_28_50-JARVIS.png

                        M 1 Antwort Letzte Antwort
                        0
                        • S sicadrip

                          @Zefau
                          Ich vermisse in der aktuellen alpha.125 beim DateTime Modul die Einstellung "Style des Textes (JSON Format)". Kommt das wieder dazu?

                          v3.0.0-alpha.125
                          2021-11-15 15_28_59-Window.png
                          v2.3.3
                          2021-11-15 15_28_50-JARVIS.png

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

                          @sicadrip CSS Eintrag
                          https://mcuiobroker.gitbook.io/jarvis-infos/jarvis/besonderheiten-v3/styles/datetime

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

                          -cs-- 1 Antwort Letzte Antwort
                          0
                          • M MCU

                            @sicadrip CSS Eintrag
                            https://mcuiobroker.gitbook.io/jarvis-infos/jarvis/besonderheiten-v3/styles/datetime

                            -cs-- Offline
                            -cs-- Offline
                            -cs-
                            schrieb am zuletzt editiert von -cs-
                            #5757

                            Hi,
                            wenn ich in Jarvis (mobiles Ansicht auf Samsung Note10 / Chrome) scrollen möchte kommt neuerdings die Fehletmeldung:

                            Screenshot_20211113-142609_Chrome.jpg

                            Sorry, aber ich verstehe hier nur Bahnhof.
                            Solange ich nicht scrolle funktioniert alles.

                            M 1 Antwort Letzte Antwort
                            0
                            • M MCU

                              @lustig29 Ich hab mal dem Entwickler vom Homepilot geschrieben, mal schauen was er sagt:
                              https://github.com/Pix---/ioBroker.homepilot/issues/26

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

                              @lustig29 Es hat sich beim Adapter etwas getan. Schau es dir mal an.
                              https://github.com/Pix---/ioBroker.homepilot/issues/26

                              https://github.com/Pix---/ioBroker.homepilot/tree/1.2.0a

                              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
                              • -cs-- -cs-

                                Hi,
                                wenn ich in Jarvis (mobiles Ansicht auf Samsung Note10 / Chrome) scrollen möchte kommt neuerdings die Fehletmeldung:

                                Screenshot_20211113-142609_Chrome.jpg

                                Sorry, aber ich verstehe hier nur Bahnhof.
                                Solange ich nicht scrolle funktioniert alles.

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

                                @csr Welche Version ist das? v2 oder v3?

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

                                -cs-- 1 Antwort Letzte Antwort
                                0
                                • M MCU

                                  @csr Welche Version ist das? v2 oder v3?

                                  -cs-- Offline
                                  -cs-- Offline
                                  -cs-
                                  schrieb am zuletzt editiert von -cs-
                                  #5760

                                  @mcu sorry, dachte das steht dort.

                                  Erst 2.2.1 (2.2.2 sorry war erst Tippfehler) nach dem Fehler las ich irgendwo man soll auf 3.0 Updaten, wusste aber nicht wie.
                                  Somit habe ich Beta 2.2.3 getestet und ist das gleiche.

                                  Admin 5.1.25
                                  Node.js v12.22.7
                                  NPM 6.14.15
                                  Auf NUC i5 / Proxmox / VM Debian

                                  M 1 Antwort Letzte Antwort
                                  0
                                  • -cs-- -cs-

                                    @mcu sorry, dachte das steht dort.

                                    Erst 2.2.1 (2.2.2 sorry war erst Tippfehler) nach dem Fehler las ich irgendwo man soll auf 3.0 Updaten, wusste aber nicht wie.
                                    Somit habe ich Beta 2.2.3 getestet und ist das gleiche.

                                    Admin 5.1.25
                                    Node.js v12.22.7
                                    NPM 6.14.15
                                    Auf NUC i5 / Proxmox / VM Debian

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

                                    @csr https://mcuiobroker.gitbook.io/jarvis-infos/v3-fuer-einsteiger/installation-jarvis-v3

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

                                    -cs-- 1 Antwort Letzte Antwort
                                    0
                                    • M MCU

                                      @csr https://mcuiobroker.gitbook.io/jarvis-infos/v3-fuer-einsteiger/installation-jarvis-v3

                                      -cs-- Offline
                                      -cs-- Offline
                                      -cs-
                                      schrieb am zuletzt editiert von
                                      #5762

                                      @mcu
                                      Schaut gut aus, danke.
                                      Ich frag mich bloß warum ich das nicht fand? :thinking_face:

                                      1 Antwort Letzte Antwort
                                      0
                                      • U Offline
                                        U Offline
                                        UncleB
                                        schrieb am zuletzt editiert von UncleB
                                        #5763

                                        Abend zusammen,
                                        Ich hab gestern den E-Chart Adapter installiert, wirklich genialer Adapter den ich bis Dato nicht kannte.
                                        Und würde das Diagramm gerne als I-Frame einbinden.
                                        Kann die Url ohne Probleme im Browser öffnen und alles wird perfekt dargestellt.
                                        Binde ich die Url als iFrame in Jarvis ein erhalte ich ne Fehlermeldung "Verbindung abgelehnt"
                                        Jemand ne Idee woran das liegen könnte?
                                        Auswahl_247.png Auswahl_248.png

                                        P.S Wusste nicht welcher der richtige Thread für mein Problem ist, dieser hier oder vom E-Chart Adapter

                                        M 1 Antwort Letzte Antwort
                                        0
                                        • U UncleB

                                          Abend zusammen,
                                          Ich hab gestern den E-Chart Adapter installiert, wirklich genialer Adapter den ich bis Dato nicht kannte.
                                          Und würde das Diagramm gerne als I-Frame einbinden.
                                          Kann die Url ohne Probleme im Browser öffnen und alles wird perfekt dargestellt.
                                          Binde ich die Url als iFrame in Jarvis ein erhalte ich ne Fehlermeldung "Verbindung abgelehnt"
                                          Jemand ne Idee woran das liegen könnte?
                                          Auswahl_247.png Auswahl_248.png

                                          P.S Wusste nicht welcher der richtige Thread für mein Problem ist, dieser hier oder vom E-Chart Adapter

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

                                          @uncleb Welche Version v2 oder v3?

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

                                          U 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

                                          622

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          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