Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. Alexa schaltet nicht mehr meine Node red flows.

    NEWS

    • Wir empfehlen: Node.js 22.x

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker goes Matter ... Matter Adapter in Stable

    Alexa schaltet nicht mehr meine Node red flows.

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

      @TraceFinder
      Was meinst du mit alexa Rev 1 oder 2?
      Doppelklick auf den Tab des alten Flows und dann deaktivieren.
      In den alten Flows die kompletten nodes kopieren, in neue Flows einfügen und alexa-local durch alexa-home ersetzen.
      Ich habe nur Echo dots 2. Gen.

      T 1 Reply Last reply Reply Quote 0
      • T
        TraceFinder @vepman last edited by

        @vepman Was meinst du mit alexa Rev 1 oder 2? Ich habe nur Echo dots 2. Gen
        => Ja genau das hatte ich gemeint. 😊 So einen habe ich auch,

        Die alten Flows habe ich jetzt deaktiviert, den Neuen entsprechend erstellt. => Deploy => Gerätesuche via alexa.amazon.de => Leider wird bei mir nix gefunden ... 😢

        Ich habe bei mir jetzt noch beide nodes installiert:
        6f60fdcb-bf28-4b7a-be2f-4c587d82e5e8-grafik.png

        Ist das bei dir auch der Fall?
        Den "neuen" node-red-contrib-alexa-home habe ich, wie von dir beschrieben einfach "nur" installiert und die defaults bestehen lassen. Muss man da sonst noch etwas machen?

        V 1 Reply Last reply Reply Quote 0
        • T
          TraceFinder last edited by

          @vepman Kannst du vielleicht auch noch einmal kurz schauen welche Version der Gerätesoftware dein Echo dot Gen2 hat. Meine Firmware Version lautet: "644580520"

          V 1 Reply Last reply Reply Quote 0
          • V
            vepman @TraceFinder last edited by

            @TraceFinder
            Alle dots haben 641575220

            1 Reply Last reply Reply Quote 0
            • V
              vepman @TraceFinder last edited by

              @TraceFinder

              hier mal ein funktionierender flow, der bei mir garantiert läuft.
              Natürlich muss der iobroker-out node angepasst werden.
              Also:
              Flow erstellen, Import über die Zwischenablage, iobroker-out anpasssen, Name von Küche Lampe ändern, Alexa App oder Dot sagen, dass neue Geräte gesucht werden sollen. Fertig!

              [
                  {
                      "id": "fde342e9.40c8d",
                      "type": "ioBroker out",
                      "z": "c3be1355.09012",
                      "name": "Klemmlampe Kueche:1.STATE",
                      "topic": "hm-rpc.0.KEQ4445555.1.STATE",
                      "ack": "false",
                      "autoCreate": "false",
                      "x": 710,
                      "y": 140,
                      "wires": []
                  },
                  {
                      "id": "a51022fb.348818",
                      "type": "alexa-home",
                      "z": "c3be1355.09012",
                      "devicename": "Küche Lampe",
                      "devicetype": "Extended color light",
                      "x": 100,
                      "y": 140,
                      "wires": [
                          [
                              "2993e794.5cb66"
                          ]
                      ]
                  },
                  {
                      "id": "2993e794.5cb66",
                      "type": "function",
                      "z": "c3be1355.09012",
                      "name": "on off",
                      "func": "let state = msg.payload.on;\nlet out = \"\";\n\nif(state == false){\noutput = \"0\";\n}else{\nstate = true;\noutput = \"1\"\n}\nreturn { \"payload\":output };",
                      "outputs": 1,
                      "noerr": 0,
                      "x": 390,
                      "y": 140,
                      "wires": [
                          [
                              "fde342e9.40c8d"
                          ]
                      ]
                  },
                  {
                      "id": "f549e69e.ccbe28",
                      "type": "alexa-home-controller",
                      "z": "c3be1355.09012",
                      "controllername": "Alexa Controller",
                      "port": 60000,
                      "x": 120,
                      "y": 220,
                      "wires": []
                  }
              ]
              
              ? 1 Reply Last reply Reply Quote 0
              • J
                Jibbo last edited by Jibbo

                Hey Leute,
                seit vorgestern funktionierten meine Nodes von "node-red-contrib-alexa-local" und "node-red-contrib-alexa-home" gar nicht mehr.

                Hier ist meine Lösung dazu:
                Ich benutze zwei Echo Dot 2nd Gen.(Firmware: 644580520)
                Ich habe gelesen das Amazon etwas am Discovery verändert hat und das nur noch über Port 80 läuft.
                Zusätzlich habe ich meine Lösung mit 44 Nodes getestet.

                Alexa Home

                Alexa Local

                Hier ist mein Auszug davon:


                So Here is my Workaround/ Fix for me

                My System runs on IoBroker with a Node Red instance.
                I Use this node Red Module : https://flows.nodered.org/node/node-red-contrib-amazon-echo
                This Module works local without any Cloud Connection.

                But i could not assign Port 80 to the "Amazon Echo Hub" from the new Module.
                So i routed my Port 80 tcp and udp to another Port.(In my Case 1880, but you can choose whatever you want) In fact you should use another Port like 1890 because 1880 is the default Node Red Port.

                Here´s an Manual for IP Table Routing:
                https://o7planning.org/de/11363/redirect-port-80-443-auf-ubuntu-server-mit-iptables
                If you want to save at the end again (Beacuse of TCP and UDP), this is the Command: sudo iptables-save

                After this I created a "Amazon Echo Hub" ,set the Hub to the Routed Port and replaced my Nodes with the new ones.
                Connected all Nodes to the Hub and deployed my Flow.

                That´s it . After that I started the Discover and all Devices were found again.

                Hope it helps some people.

                Hoffe es hilft euch

                T 1 Reply Last reply Reply Quote 0
                • T
                  TraceFinder @Jibbo last edited by TraceFinder

                  @Jibbo said in Alexa schaltet nicht mehr meine Node red flows.:

                  So i routed my Port 80 tcp and udp to another Port.

                  Damit ich das richtig verstehe: Das ReRouting musste in meinem Fall auf dem Raspberry Pi erfolgen, auf dem bei mir der ioBroker und nodeRed läuft?
                  (Also keine Portweiterleitung z.B. auf der Fritzbox, o.ä.)

                  J 1 Reply Last reply Reply Quote 0
                  • J
                    Jibbo @TraceFinder last edited by Jibbo

                    @TraceFinder
                    Da es viele verschiedene Seiten mit dem gleichen Problem gibt, habe ich ein Discord gemacht um alles zu vereinfachen.

                    Hier wird die Anleitung aktualisiert.

                    https://discord.gg/Turn7Mm

                    aber um deine Frage zu benatworten:
                    Ja das ist eine umleitung auf dem pi.
                    Hat nichts mit Fritzbox oder so zu tun.

                    1 Reply Last reply Reply Quote 0
                    • ?
                      A Former User @vepman last edited by

                      @vepman sagte in Alexa schaltet nicht mehr meine Node red flows.:

                      @TraceFinder

                      hier mal ein funktionierender flow, der bei mir garantiert läuft.
                      Natürlich muss der iobroker-out node angepasst werden.
                      Also:
                      Flow erstellen, Import über die Zwischenablage, iobroker-out anpasssen, Name von Küche Lampe ändern, Alexa App oder Dot sagen, dass neue Geräte gesucht werden sollen. Fertig!

                      [
                          {
                              "id": "fde342e9.40c8d",
                              "type": "ioBroker out",
                              "z": "c3be1355.09012",
                              "name": "Klemmlampe Kueche:1.STATE",
                              "topic": "hm-rpc.0.KEQ4445555.1.STATE",
                              "ack": "false",
                              "autoCreate": "false",
                              "x": 710,
                              "y": 140,
                              "wires": []
                          },
                          {
                              "id": "a51022fb.348818",
                              "type": "alexa-home",
                              "z": "c3be1355.09012",
                              "devicename": "Küche Lampe",
                              "devicetype": "Extended color light",
                              "x": 100,
                              "y": 140,
                              "wires": [
                                  [
                                      "2993e794.5cb66"
                                  ]
                              ]
                          },
                          {
                              "id": "2993e794.5cb66",
                              "type": "function",
                              "z": "c3be1355.09012",
                              "name": "on off",
                              "func": "let state = msg.payload.on;\nlet out = \"\";\n\nif(state == false){\noutput = \"0\";\n}else{\nstate = true;\noutput = \"1\"\n}\nreturn { \"payload\":output };",
                              "outputs": 1,
                              "noerr": 0,
                              "x": 390,
                              "y": 140,
                              "wires": [
                                  [
                                      "fde342e9.40c8d"
                                  ]
                              ]
                          },
                          {
                              "id": "f549e69e.ccbe28",
                              "type": "alexa-home-controller",
                              "z": "c3be1355.09012",
                              "controllername": "Alexa Controller",
                              "port": 60000,
                              "x": 120,
                              "y": 220,
                              "wires": []
                          }
                      ]
                      

                      Hallo @vepman ,
                      ich habe deinen Flow importiert, aber leider nach wie vor ein Problem.
                      Der Sonoff schaltet ein, aber nicht aus.
                      Was kann ich tun?

                      V 1 Reply Last reply Reply Quote 0
                      • V
                        vepman @Guest last edited by

                        @Nuggelbeb sagte in Alexa schaltet nicht mehr meine Node red flows.:

                        Was kann ich tun?

                        Versuche mal false und true mit 0 und 1 zu ersetzen.
                        Dann natürlich String oder Number dazu nehmen.

                        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

                        565
                        Online

                        32.0k
                        Users

                        80.4k
                        Topics

                        1.3m
                        Posts

                        alexa node red
                        8
                        22
                        4090
                        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