Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. Homematic IP Garagenmodul iobroker

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Homematic IP Garagenmodul iobroker

    This topic has been deleted. Only users with topic management privileges can see it.
    • Z
      zahnheinrich @d.sch last edited by

      @d-sch
      Wie @paul53 schon sagte, ist DOOR_COMMAND eine Werteliste,
      Hat dem CCU copy nach zu urteilen, die Werte 0, 1 oder 2.
      Setze einen dieser Werte für DOOR_COMMAND ganz rechts in der von dir gezeigten iobroker Objekt Tabelle und schau was das Tor macht.

      paul53 D 2 Replies Last reply Reply Quote 0
      • paul53
        paul53 @zahnheinrich last edited by paul53

        @zahnheinrich sagte:

        die Werte 0, 1 oder 2.

        Werte 0 bis 4:

        • 1 - Öffnen
        • 3 - Schließen
        • 4 - Lüften

        Habe aber keine Ahnung, wie man das Alexa beibringt.

        1 Reply Last reply Reply Quote 0
        • D
          d.sch last edited by

          ok danke für die antworten.

          ich probier mal aus damit klar zu kommen und meld mich nochmal 🙂

          1 Reply Last reply Reply Quote 0
          • D
            d.sch @zahnheinrich last edited by d.sch

            @zahnheinrich habe jetzt gefunden was du meintest.
            Aber wenn ich z.b. auf Open gehe und bestätige wird das Open nicht grün sondern bleibt rot.

            20191116_182022.jpg

            20191116_182233.jpg

            20191116_182805.jpg

            Sorry kenn mich nicht wirklich aus 😞

            Homoran 1 Reply Last reply Reply Quote 0
            • Homoran
              Homoran Global Moderator Administrators @d.sch last edited by

              @d-sch sagte in Homematic IP Garagenmodul iobroker:

              Aber wenn ich z.b. auf Open gehe und bestätige wird das Open nicht grün sondern bleibt rot.

              Das ist ganz normal bei allen States.
              Der Wert muss mit einem ACK=false eingegeben werden und vom Gerät übernommen und bestätigt werden, damit der Wert schwarz wird.

              Bei manueller Eingabe bleibt er daher immer rot

              D paul53 2 Replies Last reply Reply Quote 0
              • D
                d.sch @Homoran last edited by

                @Homoran ist das richtig wie ich das sehe.. ich muss den door_command 2 mal Open /close umändern und dann zwei mal in die Cloud smart Geräte einfügen und mit Alexa übernehmen? sorry ich kenne mich da zu wenig aus, sind die ersten Versuche mit iobroker 🙂

                Homoran 1 Reply Last reply Reply Quote 0
                • Homoran
                  Homoran Global Moderator Administrators @d.sch last edited by Homoran

                  @d-sch sagte in Homematic IP Garagenmodul iobroker:

                  sorry ich kenne mich da zu wenig aus

                  und ich kenne Alexa überhaupt nicht - Sorry
                  Da muss dir jemand mit Alexa-Erfahrung helfen

                  1 Reply Last reply Reply Quote 0
                  • paul53
                    paul53 @Homoran last edited by

                    @Homoran sagte:

                    Bei manueller Eingabe bleibt er daher immer rot

                    Das ist nicht so, sondern nur bei Datenpunkten, bei denen die Rückmeldung auf einem anderen Datenpunkt (DOOR_STATE) erfolgt. Weiteres Beispiel: MANU_MODE --> CONTROL_MODE, SET_TEMPERATURE.

                    1 Reply Last reply Reply Quote 0
                    • D
                      d.sch last edited by

                      wie bekomme ich es hin das, dass Open bei wert bleibt?ich wähle Open aus und bestätigte und immer wenn ich alles aktualisiere steht bei door_command wieder im Wert NOP(0)

                      paul53 1 Reply Last reply Reply Quote 0
                      • paul53
                        paul53 @d.sch last edited by paul53

                        @d-sch sagte:

                        steht bei door_command wieder im Wert NOP(0)

                        Öffnet das Garagentor nicht ?

                        1 Reply Last reply Reply Quote 0
                        • D
                          d.sch last edited by d.sch

                          Ich wähle Open aus, aktualisiere alles/gehe zum Cloud Adapter neues Gerät/ wähle dort door_command aus/ aktualisiere alles/ gehe in die Alexa app/ suche Gerät/ findet door_command aber das Tor öffnet sich nur im lüftungsmodus und hat in Objekte wieder den Wert nop(0) stehen

                          paul53 1 Reply Last reply Reply Quote 0
                          • paul53
                            paul53 @d.sch last edited by

                            @d-sch sagte :

                            hat in Objekte wieder den Wert nop(0) stehen

                            Kann es sein, dass der Datenpunkt nur kurz das Kommando 1 ... 4 sendet und dann selbständig auf 0 zurück springt ? In dem Fall wird man wohl einen eigenen Datenpunkt benötigen, der per Skript mit DOOR_COMMAND und DOOR_STATE verknüpft ist.

                            1 Reply Last reply Reply Quote 0
                            • D
                              d.sch last edited by

                              wie erstelle ich einen eigenen Datenpunk mit Script 😥

                              paul53 1 Reply Last reply Reply Quote 0
                              • paul53
                                paul53 @d.sch last edited by paul53

                                @d-sch sagte:

                                wie erstelle ich einen eigenen Datenpunk mit Script

                                Vorschlag:

                                // IDs anpassen
                                const idCmd = '...DOOR_COMMAND';
                                const idStat = '...DOOR_STATE';
                                const idDoor = 'Garage.Tor';
                                
                                const js = 'javascript.' + instance;
                                const jsi = 'system.adapter.' + js;
                                
                                createState(idDoor, 2, {
                                    type: 'number',
                                    states: {
                                        0: 'schliessen',
                                        1: 'öffnen',
                                        2: 'lüften'
                                    },
                                    min: 0,
                                    max: 2
                                });
                                
                                on(idStat, function(dp) {
                                    if(dp.state.val < 3) setState(idDoor, dp.state.val, true);
                                });
                                
                                on({id: js + '.' + idDoor, change: 'ne', fromNe: jsi}, function(dp) {
                                    var cmd = 4; // Lüften
                                    if(dp.state.val == 0) cmd = 3; // Schließen
                                    else if(dp.state.val == 1) cmd = 1; // Öffnen
                                    setState(idCmd, cmd);
                                });
                                
                                1 Reply Last reply Reply Quote 0
                                • D
                                  d.sch last edited by

                                  erstmal danke für deine Mühe!! wo kopiere ich das rein ? ich kenn mich da nicht aus 😞

                                  paul53 1 Reply Last reply Reply Quote 0
                                  • paul53
                                    paul53 @d.sch last edited by

                                    @d-sch sagte:

                                    wo kopiere ich das rein ?

                                    In das Editorfenster des Javascript-Adapters.

                                    1 Reply Last reply Reply Quote 0
                                    • D
                                      d.sch last edited by d.sch

                                      habe den JavaScript Adapter installiert und wo jetzt hin? und wie wird das dann verknüpft mit dem Cloud Adapter oder wie geht's dann weiter?
                                      Sorry für die fragen 😛

                                      Screenshot_20191116-200725.jpg

                                      paul53 1 Reply Last reply Reply Quote 0
                                      • paul53
                                        paul53 @d.sch last edited by

                                        @d-sch sagte:

                                        wo jetzt hin?

                                        Links "Skripte" auswählen. Im Reiter "Skripte" common anwählen und mit dem + links oben eines neues Skript (Typ "Javascript") erstellen. Namen vergeben und mit copy & paste das Skript einfügen.

                                        @d-sch sagte in Homematic IP Garagenmodul iobroker:

                                        wie wird das dann verknüpft mit dem Cloud Adapter

                                        Davon habe ich keine Ahnung.

                                        1 Reply Last reply Reply Quote 0
                                        • D
                                          d.sch last edited by

                                          ok danke probiere ich morgen aus. muss ich im Script noch was ändern?

                                          paul53 Z 2 Replies Last reply Reply Quote 0
                                          • paul53
                                            paul53 @d.sch last edited by

                                            @d-sch sagte:

                                            muss ich im Script noch was ändern?

                                            Ja, die richtigen IDs eingeben (Zeilen 2, 3).

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate
                                            FAQ Cloud / IOT
                                            HowTo: Node.js-Update
                                            HowTo: Backup/Restore
                                            Downloads
                                            BLOG

                                            511
                                            Online

                                            31.7k
                                            Users

                                            79.7k
                                            Topics

                                            1.3m
                                            Posts

                                            alexa cloud homematic
                                            7
                                            31
                                            2330
                                            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