Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Visualisierung
    4. Jarvis: Widget für Hörmann Homematic IP Steuerung

    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: Widget für Hörmann Homematic IP Steuerung

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

      @mcu

      2023-05-17 11_32_33-Jarvis – Mozilla Firefox.png

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

        @vlink Nein der muss "On" sein. ist für die IconButtonAction

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

          @mcu

          ok
          steht so im moment

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

            @mcu 4a18d590-4919-4153-9937-aec616d08726-image.png
            Nochmal

            {"on":4}
            
            V 1 Reply Last reply Reply Quote 0
            • V
              vlink @MCU last edited by

              @mcu

              COOL!
              Jetzt geht es auf einmal.
              Hab es nur nochmal reinkopiert.

              Hoch, runter, stop, ventilation - geht!

              Einzigstes Manko.. fahre ich runter..dauert es echt 3..4 Sek bis der Stopp button aktivierbar ist.
              Tör fährt also einige Sekunden bis ich es stoppen kann.

              Sonst alles perfekt jetzt

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

                @vlink Ja ist mir auch aufgefallen, kann ich aber nicht abschätzen, woran es liegt, habe es an Zefau weitergegeben. Mal abwarten.
                Aber man fährt das Tor ja nicht um es zu stoppen?
                Sicherheitsfunktionen wird das Tor ja haben?

                V 1 Reply Last reply Reply Quote 0
                • V
                  vlink @MCU last edited by

                  @mcu

                  Nein nicht das wichtigste.
                  Denke liegt an Verzögerungen der Verarbeitung zwischen Jarvis, ioBroker, CCU3 und dem Gerät

                  Direkt in der CCU3 stoppt es sofort

                  Ansonsten passt es aber jetzt.

                  Vielen Vielen Dank!
                  Bist mein Held 🙂

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

                    @vlink Dann bitte die Einstellungen, so wie sie bei dir jetzt sind als Bilder einfügen, damit ein anderer darauf zurückgreifen kann. Auch mit dem fertigen Script. Danke.

                    V 1 Reply Last reply Reply Quote 0
                    • V
                      vlink @MCU last edited by

                      @mcu

                      Das mache ich sehr gerne.
                      Einfach hier als Antwort posten?

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

                        @vlink Ja

                        V 1 Reply Last reply Reply Quote 0
                        • V
                          vlink @MCU last edited by vlink

                          @mcu

                          Hier die fertige Lösung. Vielen vielen Dank an @mcu !!!

                          Neues Gerät anlegen, Typ 'Rolladen / Jalousie' mit folgenden Eigenschaften:

                          2023-05-17 11_43_20-Jarvis – Mozilla Firefox.png

                          2023-05-17 11_43_37-Jarvis – Mozilla Firefox.png

                          2023-05-17 11_43_48-Jarvis – Mozilla Firefox.png

                          Anzeigevariante:

                          {"{0_userdata.0.jarvis.garage.activity}=false && {val}=1":"oben","{0_userdata.0.jarvis.garage.activity}=false && {val}=3":"unten","{0_userdata.0.jarvis.garage.activity}=false && {val}=2":"gestoppt","{0_userdata.0.jarvis.garage.activity}=false && {val}=4":"Ventilation Position","{0_userdata.0.jarvis.garage.activity}=true && {val}=1":"läuft nach oben","{0_userdata.0.jarvis.garage.activity}=true && {val}=3":"läuft nach unten"}
                          

                          Datenpunkt Eigenschaften:

                          {"min":1,"max":3,"stop":2}
                          

                          Icon:

                          {"1":"window-shutter-open","2":"window-shutter-alert","3":"window-shutter","4":"window-shutter-settings","default":"window-shutter-alert"}
                          

                          2023-05-17 11_44_44-Jarvis – Mozilla Firefox.png

                          2023-05-17 11_45_01-Jarvis – Mozilla Firefox.png

                          Stop DP - Icon:

                          {"1":"window-shutter-open","2":"window-shutter-alert","3":"window-shutter","4":"window-shutter-settings","default":"window-shutter-alert"}
                          

                          Neues Widget anlegen:
                          2023-05-17 11_46_12-Jarvis – Mozilla Firefox.png

                          Styles - Wichtig Widget ID anpassen an die eigene:

                          /* WidgetID anpassen */
                          /* HÖRMANN */
                          
                          .jarvis-widget-58d8e840-5715-4b6e-ac2b-8370446d569d .mdi-chevron-down {
                          	color: transparent;
                          	background: url('https://api.iconify.design/mdi/chevron-up.svg?color=grey') no-repeat center center / contain;
                          }
                          
                          .jarvis-widget-58d8e840-5715-4b6e-ac2b-8370446d569d .mdi-chevron-up {
                          	color: transparent;
                          	background: url('https://api.iconify.design/mdi/chevron-down.svg?color=grey') no-repeat center center / contain;
                          }
                          

                          Neues Script auf dem ioBroker:

                          let processDP = 'Eigenen Process DP hier eintragen';
                          let activityDP = '0_userdata.0.jarvis.garage.activity'; // muss angelegt werden, bei mehreren garage1, garage2
                          
                          
                          createStateAsync(activityDP, {read: true, write: false, name: "Garage Hörmann Activity", desc:"Activity für Garage", type: "boolean",  def: false });
                           
                          
                          on({id: processDP, change: "any"}, function (obj) {
                             let value = obj.state.val;
                              if(value == 0){
                                  setState(activityDP,false,true);
                              }else{
                                  setState(activityDP,true,true);
                              }
                          });
                          

                          Fertige Ansicht in Jarvis (Ich habe die Beleuchtung des Hörmann Antriebs auch noch mit eingefügt):
                          2023-05-17 11_47_58-Jarvis – Mozilla Firefox.png

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

                            @vlink Bitte die Einstellungen in Code-tags -> markieren und dann db783249-44a1-4541-b1a3-294bb4ba1748-image.png klicken
                            https://mcuiobroker.gitbook.io/jarvis-infos/tipps/allgemein/iobroker/forum-editor#codetext-code-tag-einfuegen

                            V 1 Reply Last reply Reply Quote 0
                            • V
                              vlink @MCU last edited by

                              @mcu
                              erledigt

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

                                @vlink Super. Danke.

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

                                  @mcu Eins noch:
                                  a130f5ba-943b-42b9-a554-580958f2b94c-image.png

                                  V 1 Reply Last reply Reply Quote 0
                                  • V
                                    vlink @MCU last edited by

                                    @mcu

                                    SECTION_STATUS bleibt bei NORMAL(0)

                                    SECTION ist auf 3 bei Ventilationsöffnung
                                    auf 0 bei geschlossen
                                    auf 3 bei offen
                                    auf 2 wenn solange das Tor auffährt
                                    auf 5 wenn solange das Tor zu fährt

                                    1 Reply Last reply Reply Quote 0
                                    • R
                                      reutli @MCU last edited by

                                      @mcu und @vlink

                                      Coole Sache! Das kann ich direkt nachbauen. 👍
                                      @MCU : Nimmst Du das in Dein Wiki auf? Muss ja noch Hinweis rein, dass nur mit PRO möglich.

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

                                        @reutli
                                        https://mcuiobroker.gitbook.io/jarvis-infos/jarvis-v3/besonderheiten-v3/fall-beispiele#hoermann-homematic-ip-garage-einbinden-pro-erforderlich

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

                                        Support us

                                        ioBroker
                                        Community Adapters
                                        Donate

                                        870
                                        Online

                                        31.9k
                                        Users

                                        80.1k
                                        Topics

                                        1.3m
                                        Posts

                                        4
                                        60
                                        2473
                                        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