Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. jarvis v2.2.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 v2.2.0 - just another remarkable vis

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

      @ceel Das war doch eben anders?

      StmKey='84bbf39ba575XXXXXXXX86124b531'"
      
      C 1 Reply Last reply Reply Quote 0
      • C
        Ceel @MCU last edited by

        @mcu
        ja hatte testweise das:
        httpAdr = httpAdr.replace('"',"'");
        httpAdr = httpAdr.replace('"',"'");
        rausgenommen

        ist jetzt wieder drinnen

        M 2 Replies Last reply Reply Quote 0
        • M
          MCU @Ceel last edited by MCU

          @ceel Das was mir noch einfällt, wäre ein Kopieren des Bildes auf ein festes Bild (http://192.168.178.xxx:8082/vis.0/Bild.jpg) bevor man es mit iFrame darstellt. Du kannst es ja mit einem normalen Bild von einem http-Server testen.

          Ist ioBroker auch auf 192.168.178.3?
          Hier ein Beispiel:

          var Speicher_Verzeichnis= "/opt/iobroker/iobroker-data/files/vis/img/";
          var url = getState('synology.0.SurveillanceStation.cameras.Eingang.linkMjpegHttpPath').val;
          request(url, {encoding:'binary'}, function(error, response, body) {
                             fs.writeFile(Speicher_Verzeichnis  + 'Anruferbild.jpg', body, 'binary', function (err) {
                             if(err) log('Fehler!');
                             const bild1 = fs.readFileSync(Speicher_Verzeichnis + 'Anruferbild.jpg');
                                   writeFile('vis.0','/Anruferbild.jpg', bild1,function (err) {
                             if(err) log('Fehler!');});
                             })});  
          
          
          var jarvisNotify = {};
          //Beispiele
          jarvisNotify.title = "Es hat geklingelt";
          // "<b>Dies ist BOLD</b>"
          //let httpAdr = getState('synology.0.SurveillanceStation.cameras.Eingang.linkMjpegHttpPath').val;
          //httpAdr = httpAdr.replace('"',"'");
          //httpAdr = httpAdr.replace('"',"'");
          jarvisNotify.message= '<iFrame src="http://192.168.178.3:8082/vis.0/Anruferbild.jpg" height="350" width="350"></iFrame>';
           
          jarvisNotify.state = "unread";          //Damit bleibt die Benachrichtigung auch nach POPUP ungelesen und wird oben angezeigt mit der Zahl
          jarvisNotify.criticality = "none";      // error,warning,info,success
          jarvisNotify.display ="popup";          //drawer,snackbar,popup, none für focusTab
          jarvisNotify.autoHideDuration = 180000;  //5000ms -> 5 Sekunden
          jarvisNotify.snackbarOrigin = {};       //"snackbarOrigin": { "horizontal": "...", "vertical": "" }, 
                                                  // optional, applies when display is snackbar, { horizontal: 'center' | 'left' | 'right', vertical: 'bottom' | 'top' }
          jarvisNotify.icon = "bell-ring-outline"; //mdi Iconify
          jarvisNotify.iconColor = "#5D5DED";
          jarvisNotify.backgroundColor = "black";
          jarvisNotify.fontColor = "white";
          jarvisNotify.focusTab = ""; //focus a certain tab
          setState('jarvis.0.addNotification',JSON.stringify(jarvisNotify));
          
          
          1 Reply Last reply Reply Quote 0
          • M
            MCU @Ceel last edited by MCU

            @ceel
            Man kann nochmal die alte Variante testen mit

            httpAdr = httpAdr.replace('"',"%22");
            httpAdr = httpAdr.replace('"',"%22");
            

            https://www.synology-forum.de/threads/mjpeg-stream-und-jpeg-snapshot-ueber-web-api-abfragen.84259/
            https://de.wikipedia.org/wiki/URL-Encoding

            Bei dem Link aus deinem State kann es auch ein Video sein?

            <video id="player" height="360" width="640" controls preload="none" autoplay>
                <source src="http://192.168.178.3:5000/webapi/entry.cgi?api=SYNO.SurveillanceStation.Stream.VideoStreaming&version=1&method=Stream&format=mjpeg&cameraId=2&StmKey=%2284bbf39bXXXX6aa86124b531%22" type="application/x-mpegURL" />
            </video>
            

            https://www.w3schools.com/html/html5_video.asp

            C 1 Reply Last reply Reply Quote 0
            • C
              Ceel @MCU last edited by Ceel

              @mcu
              httpAdr = httpAdr.replace('"',"%22");
              httpAdr = httpAdr.replace('"',"%22");
              hat tatsächlich funktioniert

              Das mit dem Video hat nicht funktioniert!

              jetzt habe ich aber das Problem mit der Größe des Popups
              popup.png

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

                @ceel Stell mal width auf 100% und height auf auto.

                width="100% height="auto"
                oder
                width="90%" height="auto"
                
                C 1 Reply Last reply Reply Quote 0
                • C
                  Ceel @MCU last edited by Ceel

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

                  width="90%" height="auto"

                  dann ist das Bild und das Popup noch kleiner

                  100% hatte ich auch schon getestet
                  genauso wie ohne width und height

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

                    @ceel Was möchtest du denn erreichen? Das Bild ist doch jetzt da?

                    C 1 Reply Last reply Reply Quote 0
                    • C
                      Ceel @MCU last edited by

                      @MCU ja das bild ist da.
                      nur das Popup Fenster ist zu klein
                      nicht breit genug

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

                        @ceel Breiter geht es nicht. Du siehst doch 90%. Und unten ist der Scrollbalken. Den kann man nach rechts schieben und man sieht den Rest.

                        C 1 Reply Last reply Reply Quote 0
                        • C
                          Ceel @MCU last edited by

                          @mcu
                          Achso OK
                          weil du gesagt hattest das sich die Breite je nach iframe automatisch anpasst

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

                            @ceel Wenn du dir das Popup auf dem PC anschaust, wird es komplett angezeigt?

                            C 1 Reply Last reply Reply Quote 0
                            • C
                              Ceel @MCU last edited by

                              @MCU nein
                              so wie im screenshot

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

                                @ceel Stellst du bitte das Script rein, welches jetzt funktioniert. Danke.

                                C 1 Reply Last reply Reply Quote 0
                                • C
                                  Ceel @MCU last edited by

                                  Das fertige Script sieht jetzt so aus:

                                  var jarvisNotify = {};
                                  jarvisNotify.title = "Es hat geklingelt";
                                  let httpAdr = getState('synology.0.SurveillanceStation.cameras.Eingang.linkMjpegHttpPath').val;
                                  httpAdr = httpAdr.replace('"',"%22");
                                  httpAdr = httpAdr.replace('"',"%22");
                                  jarvisNotify.message= '<iFrame src="'+ String(httpAdr) +'" height="358" width="642"></iFrame>';
                                  jarvisNotify.state = "unread";          //Damit bleibt die Benachrichtigung auch nach POPUP ungelesen und wird oben angezeigt mit der Zahl
                                  jarvisNotify.criticality = "none";      // error,warning,info,success
                                  jarvisNotify.display ="popup";          //drawer,snackbar,popup, none für focusTab
                                  jarvisNotify.autoHideDuration = 180000;  //5000ms -> 5 Sekunden
                                  jarvisNotify.snackbarOrigin = {};       //"snackbarOrigin": { "horizontal": "...", "vertical": "" }, 
                                                                          // optional, applies when display is snackbar, { horizontal: 'center' | 'left' | 'right', vertical: 'bottom' | 'top' }
                                  jarvisNotify.icon = "bell-ring-outline"; //mdi Iconify
                                  jarvisNotify.iconColor = "#5D5DED";
                                  jarvisNotify.backgroundColor = "black";
                                  jarvisNotify.fontColor = "white";
                                  jarvisNotify.focusTab = ""; //focus a certain tab
                                  console.log(jarvisNotify.message);
                                  setState('jarvis.0.addNotification',JSON.stringify(jarvisNotify));
                                  
                                  1 Reply Last reply Reply Quote 0
                                  • T
                                    tp1de last edited by

                                    Hallo, gibt es inzwischen die Funktion / Möglichkeit eigene Gewerke anzulegen?

                                    Ich möchte z.B. für meine Heizungsanlage bzw. Warmwasserbereitung ein oder zwei Gewerke anlegen um die Datenpunkte nicht unter "Heizung" zuzuordnen (sehr unübersichtlich).

                                    Könnte ich in einem Script die dazugehörigen Geräte, Datenpunkte und ggfs. die dazugehörigen Layouts erstellen?

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

                                      Feste Background-Colors für die TABs: (v2.2.X)
                                      f03f7483-54a4-484b-b889-2b5dcdb2d89d-image.png
                                      Styles

                                      .jarvis-Tab-home {
                                       background-color: blue;
                                      }
                                      .jarvis-Tab-bad {
                                       background-color: lightblue;
                                      }
                                      .jarvis-Tab-flur {
                                       background-color: orange;
                                      }
                                      .jarvis-Tab-büro {
                                       background-color: lightgreen;
                                      }
                                      
                                      .jarvis-Tab-küche {
                                       background-color: #ff00ff;
                                      }
                                      
                                      M 1 Reply Last reply Reply Quote 0
                                      • M
                                        MCU @tp1de last edited by

                                        @tp1de
                                        Gibt es als Feature-Request, wird, glaube ich, aber nicht mehr in v2.2.x realisiert. Mit v3 vielleicht, abwarten.
                                        https://github.com/Zefau/ioBroker.jarvis/issues/188

                                        Zefau created this issue in Zefau/ioBroker.jarvis

                                        open Add functionality to maintain (custom) functions / eigene Gewerke hinzufügen #188

                                        T 1 Reply Last reply Reply Quote 0
                                        • T
                                          tp1de @MCU last edited by

                                          @mcu Danke für die schnelle Antwort - Schade 😞

                                          1 Reply Last reply Reply Quote 0
                                          • C
                                            Ceel last edited by

                                            Moin
                                            ist es möglich eigene Icons in Base64 zu vergrößern oder zu verkleinern?
                                            Habe die Icons auf 24x24 reduziert und als base64 umcodiert, aber sie sind immer noch größer als die normalen.

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            417
                                            Online

                                            31.9k
                                            Users

                                            80.1k
                                            Topics

                                            1.3m
                                            Posts

                                            jarvis material material ui materialdesign vis visualisierung visualization
                                            316
                                            6126
                                            3814829
                                            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