Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Einsteigerfragen
    4. Einbindung von Geräten
    5. Hailo Libero 3.0

    NEWS

    • Amazon Alexa - ioBroker Skill läuft aus ?

    • Monatsrückblick – September 2025

    • Neues Video "KI im Smart Home" - ioBroker plus n8n

    Hailo Libero 3.0

    This topic has been deleted. Only users with topic management privileges can see it.
    • Jey Cee
      Jey Cee Developer @Asgothian last edited by

      @asgothian danke, das hatte ich nicht auf dem Schirm das der Creator das so macht.

      Asgothian D 2 Replies Last reply Reply Quote 0
      • Asgothian
        Asgothian Developer @Jey Cee last edited by

        @jey-cee sagte in Hailo Libero 3.0:

        @asgothian danke, das hatte ich nicht auf dem Schirm das der Creator das so macht.

        ich hab mal nen issue dazu am Adapter-Creator gemacht. Mir war das bei einem Test aufgefallen, aber nachdem ich es korrigiert hatte um mit dem Adapter test weiter zu kommen wusste ich nicht mehr genau was ich da hatte, deswegen damals kein Issue 🙂

        A.

        mcm1957 1 Reply Last reply Reply Quote 0
        • mcm1957
          mcm1957 @Asgothian last edited by mcm1957

          @asgothian
          Du meinst wohl das Issue
          https://github.com/ioBroker/create-adapter/issues/1228

          Es fehlt schlicht und einfach das >= Zeichen !

          Sollte in der neuen Release (wip) schon gefixed sein.

          asgothian created this issue in ioBroker/create-adapter

          closed Freshly created adapters do not load due to admin version issue #1228

          1 Reply Last reply Reply Quote 1
          • D
            DJ-Zelti @Jey Cee last edited by

            @jey-cee brauchst du jetzt dennoch weitere Infos von mir oder liegt es jetzt erst mal rein an dem ">="-Befehl?

            Jey Cee 2 Replies Last reply Reply Quote 0
            • Jey Cee
              Jey Cee Developer @DJ-Zelti last edited by

              @dj-zelti passt erstmal. Fixe ich später und schreib hier wenn das erledigt ist.

              1 Reply Last reply Reply Quote 1
              • Jey Cee
                Jey Cee Developer @DJ-Zelti last edited by

                @dj-zelti erledigt

                D 2 Replies Last reply Reply Quote 1
                • D
                  DJ-Zelti @Jey Cee last edited by

                  @jey-cee Super - danke dir schon mal! Ich werde das gleich mal testen und dir eine Rückmeldung geben!

                  1 Reply Last reply Reply Quote 0
                  • D
                    DJ-Zelti @Jey Cee last edited by

                    @jey-cee Hier ein kurzes Update:

                    Die Installation hat soweit reibungslos funktioniert. Die IP habe ich durch die vom Router zugewiesene IP (ich habe diese als feste IP-Adresse hinterlegt) ersetzt. Die 192.168.4.1 gilt für das vom Gerät aufgebaute "interne" Netzwerk für die Erstkonfiguration und Einbindung im Heimnetzwerk.

                    Das Passwort ließ ich erst mal unverändert beim Default. Der vermeintlich einfachste Befehl, nämlich das simple Öffnen, funktioniert leider nicht, genauso wie die weiteren Einstellungen. Daher hier der Debug-Output:

                    hailo-libero.0
                    2025-10-27 20:34:23.935 error Failed to open bin lid

                    hailo-libero.0
                    2025-10-27 20:34:23.935 error Failed to open lid: Request failed with status code 404

                    hailo-libero.0
                    2025-10-27 20:34:23.872 info Sending open lid command

                    hailo-libero.0
                    2025-10-27 20:34:23.870 info Opening bin lid...

                    hailo-libero.0
                    2025-10-27 20:33:28.339 error Failed to get device info: Request failed with status code 404

                    hailo-libero.0
                    2025-10-27 20:33:28.195 info Successfully connected to Hailo Libero device

                    hailo-libero.0
                    2025-10-27 20:33:28.182 warn Authentication failed or not required. Continuing without authentication.

                    hailo-libero.0
                    2025-10-27 20:33:28.181 warn Authentication response did not include session cookie

                    hailo-libero.0
                    2025-10-27 20:33:27.728 info Connecting to Hailo Libero device...

                    hailo-libero.0
                    2025-10-27 20:33:27.672 info Initializing Hailo Libero adapter for device at 192.168.XXX.XXX:81

                    hailo-libero.0
                    2025-10-27 20:33:27.646 info starting. Version 0.0.1 (non-npm: Jey-Cee/ioBroker.hailo-libero#f523668bf88383ba86423bd1ed02e4351955e409) in /opt/iobroker/node_modules/iobroker.hailo-libero, node: v20.18.3, js-controller: 7.0.7

                    Anscheinend hat er Probleme mit der Authentication bzw. dem Session Cookie.

                    Google lieferte mir dazu einen Thread aus dem Home-Assistant-Forum.

                    Darin heißt es:
                    Just installed mine today. You need to login before you can open it. A simple shell script looks like this:

                    #!/bin/bash
                    curl --location 'http://192.168.0.77:81/login' --header 'Content-Type: application/x-www-form-urlencoded' --header 'Cookie: c=mjd8sn94809xw1nqthhl1ha6uxmqtndiX' --data-urlencode 'pin=hailo' --data-urlencode 'submit='
                    curl --location 'http://192.168.0.77:81/push' --header 'Cookie: c=mjd8sn94809xw1nqthhl1ha6uxmqtndiX'
                    

                    This takes me about 3s. They seem to store the cookie for a while. If I call:

                    curl --location 'http://192.168.0.77:81/push' --header 'Cookie: c=mjd8sn94809xw1nqthhl1ha6uxmqtndiX'
                    

                    afterwards, it opens immediately. I’ll try to figure out how long they store the login cookie.#

                    Weiter unten heißt es dann noch:
                    I figured in the meantime, that the Cookie header is dynamic. Is seems pretty stable until you restart the device. So the Cookie header that is returned from the login call is required for the opendoor command. Unfortunately I couldn’t find a way for the rest_command to return the response header yet.

                    Vielleicht hilft das weiter?

                    Jey Cee 1 Reply Last reply Reply Quote 0
                    • Jey Cee
                      Jey Cee Developer @DJ-Zelti last edited by

                      @dj-zelti Hab den Adapter Aktualisiert. Ich hoffe jetzt tut er wie er soll.

                      D 1 Reply Last reply Reply Quote 0
                      • D
                        DJ-Zelti @Jey Cee last edited by

                        @jey-cee Leider habe ich nochmal schlechte Nachrichten, ich hoffe der log-Auszug hilft weiter:

                        hailo-libero.0
                        2025-10-28 10:54:35.458 error Failed to open bin lid

                        hailo-libero.0
                        2025-10-28 10:54:35.457 warn Open lid failed: status 200, body: <!DOCTYPE html><html><head lang='de'><meta name='viewport' content='width=device-width, initial-scale=1.0'><title>Hailo Libero 3.0</title><link href='https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap' rel='stylesheet'><style>body{font-family:'Roboto',Tahoma,Geneva,sans-serif;color:#45423d;background:#f0efeb;}.visible{display:block}.hidden{display:none}.disabled{opacity:.5;pointer-events:none;}.wrapper{margin:0 auto;width:450px;}.logo{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNC4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDQzMzYzKSAgLS0+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJFYmVuZV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjYwMnB4IiBoZWlnaHQ9IjYwMXB4IiB2aWV3Qm94PSIwIDAgNjAyIDYwMSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNjAyIDYwMSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cGF0aCBmaWxsPSIjRTIwMDFBIiBkPSJNMS4wNDIsMzAxLjUwNkMxLjA0MiwxMzUuNTM2LDEzNS41NzgsMSwzMDEuNTU1LDFjMTY1Ljk1MiwwLDMwMC40OTQsMTM0LjUzNiwzMDAuNDk0LDMwMC41MDYNCgljMCwxNjUuOTYzLTEzNC41NDIsMzAwLjQ5OC0zMDAuNDk0LDMwMC40OThDMTM1LjU3OCw2MDIuMDA0LDEuMDQyLDQ2Ny40NjksMS4wNDIsMzAxLjUwNnoiLz4NCjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iI0UyMDAxQSIgZD0iTTEuMDQyLDMwMS41MDZDMS4wNDIsMTM1LjUzNiwxMzUuNTc4LDEsMzAxLjU1NSwxYzE2NS45NTIsMCwzMDAuNDk0LDEzNC41MzYsMzAwLjQ5NCwzMDAuNTA2DQoJYzAsMTY1Ljk2My0xMzQuNTQyLDMwMC40OTgtMzAwLjQ5NCwzMDAuNDk4QzEzNS41NzgsNjAyLjAwNCwxLjA0Miw0NjcuNDY5LDEuMDQyLDMwMS41MDZ6Ii8+DQo8cG9seWxpbmUgZmlsbD0iI0ZGRkZGRiIgcG9pbnRzPSI3Mi4zMzMsMjA2LjkzIDQyLjMwNSwzNjQuNjExIDg5LjU2NCwzNjQuNjExIDEwMi44MTMsMzAyLjM0MSAxNTAuMDgsMzAyLjM0MSAxMzYuODI0LDM2NC42MTEgDQoJMTg1Ljg1NCwzNjQuNjExIDIxNS44ODgsMjA3LjM3MyAxNjYuODU5LDIwNi45MyAxNTkuMzUsMjU3LjI4NiAxMTEuMjA2LDI1Ny4yODYgMTIwLjA0NSwyMDYuOTMgNzIuMzMzLDIwNi45MyAiLz4NCjxwb2x5bGluZSBmaWxsPSIjRkZGRkZGIiBwb2ludHM9IjQxMC4yMzgsMjA3LjM3OSAzODAuNjUyLDM2NC42MjUgNDI2LjU5MywzNjQuNjI1IDQ1NS43MzUsMjA3LjM3OSA0MTAuMjM4LDIwNy4zNzkgIi8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNTI0LjIwNSwyNDkuNzgxYy0yMS42NDgsMC00MC4xOS0wLjQzOC01OC4zLDE3LjY3MWMtMzMuMTI4LDMzLjU2NS0yNy44MzQsOTguMDY0LDMwLjAzNCw5OC4wNjQNCgljMjAuNzQzLDAsMzguODY2LTEuNzY5LDUxLjIzNy0xMi4zNzdDNTg2LjA0MywzMjAuNDU4LDU4NC43MiwyNDkuNzgxLDUyNC4yMDUsMjQ5Ljc4MSIvPg0KPHBhdGggZmlsbD0iI0UyMDAxQSIgZD0iTTUxNC42NzYsMjc5LjU2NGMtMTQuNTcxLDAtMjAuNzU2LDE1LjkwMi0yNC43MjcsMjkuNTk2Yy0zLjUzOCwxMy4yNTUsMi4yMDEsMjYuOTQ5LDE0LjEyNiwyNi45NDkNCgljMTEuNDkyLDAsMjAuNzcxLTE0LjE0LDIzLjg0OS0yNi4wNjRDNTMxLjQ2MywyOTUuNDY2LDUyOS42OTMsMjc5LjU2NCw1MTQuNjc2LDI3OS41NjR6Ii8+DQo8cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNFMjAwMUEiIHN0cm9rZS13aWR0aD0iMCIgZD0iTTUxNC42NzYsMjc5LjU2NGMtMTQuNTcxLDAtMjAuNzU2LDE1LjkwMi0yNC43MjcsMjkuNTk2DQoJYy0zLjUzOCwxMy4yNTUsMi4yMDEsMjYuOTQ5LDE0LjEyNiwyNi45NDljMTEuNDkyLDAsMjAuNzcxLTE0LjE0LDIzLjg0OS0yNi4wNjRDNTMxLjQ2MywyOTUuNDY2LDUyOS42OTMsMjc5LjU2NCw1MTQuNjc2LDI3OS41NjR6Ig0KCS8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjczLjMxNywzNTMuNTkyYy0xNS40Nyw5LjcxLTI1LjYyNSwxMC41ODgtNDQuMTc0LDEwLjU4OGMtMjAuMzE4LDAtMzUuMzM1LTE1LjQ1Ni0yOC43MTEtMzcuNTQzDQoJYzEyLjgwMi00OS40NjgsODMuNDc5LTI4LjcxMiw4Ny4wMTgtMzkuNzUxYzIuMjA4LTYuNjE3LTAuODg1LTEzLjY5NC0xMy42OTQtMTMuNjk0Yy03Ljk1NSwwLTEzLjY5NCw3LjA3Ny0xNS40NTYsMTUuMDI0aC00Mi44NTENCgljNy45NTQtMzAuNDgsMjMuODU2LTM4Ljg3NCw2Ny41NzgtMzguODc0YzM2LjY2NiwwLDUwLjc5OCwyMi4wOCw0NC4xODEsNDYuMzgybC0xMi4zNzgsNTIuMTE1DQoJYy0xLjc2OSw3LjA2OS0yLjY0NiwxMS40ODUsMC44NzgsMTQuMTMzbC0wLjQzMiwyLjIwOGgtNDIuODQ0QzI3MS45ODcsMzYwLjY1NSwyNzIuODcxLDM1Ny4xMTYsMjczLjMxNywzNTMuNTkyIi8+DQo8cGF0aCBmaWxsPSIjRTIwMDFBIiBkPSJNMjc3LjkyMSwzMTAuNDkxYy00LjQxNiwxNS45MDgtOS4yNzcsMjYuOTU1LTI5LjE1LDI2Ljk1NWMtNy45NTQsMC0xMS4wNDctNC40MTYtOC44MzktMTEuNDkyDQoJQzI0Mi41ODYsMzE0LjAyOSwyNjkuMDg5LDMxNS43OTgsMjc3LjkyMSwzMTAuNDkxeiIvPg0KPHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRTIwMDFBIiBzdHJva2Utd2lkdGg9IjAiIGQ9Ik0yNzcuOTIxLDMxMC40OTFjLTQuNDE2LDE1LjkwOC05LjI3NywyNi45NTUtMjkuMTUsMjYuOTU1DQoJYy03Ljk1NCwwLTExLjA0Ny00LjQxNi04LjgzOS0xMS40OTJDMjQyLjU4NiwzMTQuMDI5LDI2OS4wODksMzE1Ljc5OCwyNzcuOTIxLDMxMC40OTF6Ii8+DQo8cG9seWxpbmUgZmlsbD0iI0ZGRkZGRiIgcG9pbnRzPSIzMjQuMTAyLDM2NC42MjUgMzQ3LjUxOSwyNTMuMzEzIDM5MC4zNTksMjUzLjMxMyAzNjcuODM3LDM2NC42MjUgMzI0LjEwMiwzNjQuNjI1ICIvPg0KPHBvbHlsaW5lIGZpbGw9IiNGRkZGRkYiIHBvaW50cz0iMzQ5LjczMywyMzcuODQ5IDM1NS45MTksMjA3LjM3MyAzOTguMzEzLDIwNy4zNzMgMzkzLjQ2NiwyMzcuODQ5IDM0OS43MzMsMjM3Ljg0OSAiLz4NCjwvc3ZnPg0K');background-repeat:no-repeat;background-size:100px 100px;width:100px;height:100px;text-align:left;float:right;}.cont{background:#ffffff;margin:15px;padding:30px;width:100%;text-align:left;}.cont2{background:#ffffff;margin:5px 5px 5px 0;padding:10px 10px 10px 0;width:60%;text-align:left;float:left;}.cont3{background:#ffffff;width:60%;text-align:left;float:left;}h1,h2{font-weight:normal;padding:0;margin:0;}.sldrlbl{width:50px;float:left;text-align:right;}.slider{-webkit-appearance:none;width:70%;height:10px;border-radius:5px;background:#d3d3d3;outline:0;opacity:.7;-webkit-transition:.2s;transition:opacity .2s;padding:3px;float:left;}input[type=text],input[type=password]{width:100%;}input,button{font-family:'Roboto',Tahoma,Geneva,sans-serif;}.slider:hover{opacity:1;}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:25px;height:25px;border-radius:50%;background:#E2001A;cursor:pointer;}.slider::-moz-range-thumb{width:25px;height:25px;border-radius:50%;background:#E2001A;cursor:pointer;}.button{background-color:#58514b;border:0;color:white;padding:8px;text-align:center;text-decoration:none;display:inline-block;font-size:16px;margin:4px 2px;border-radius:4px}</style></head><body><div class='wrapper'><div class='cont'><div class='cont3'><h1>HAILO LIBERO 3.0</h1></div><div class='logo'></div><br style='clear:both;'><form action='/login' method='POST' name='login'><p>Password:<br><input type='password' name='pin' placeholder='******'></p><button type='submit' name='submit' class='button'>Login</button></form></div></p></div></body></html>

                        hailo-libero.0
                        2025-10-28 10:54:35.218 warn Authentication did not redirect; treating as failure

                        hailo-libero.0
                        2025-10-28 10:54:31.095 info Sending open lid command

                        hailo-libero.0
                        2025-10-28 10:54:31.093 info Opening bin lid...

                        hailo-libero.0
                        2025-10-28 10:53:58.606 warn Authentication did not redirect; treating as failure

                        hailo-libero.0
                        2025-10-28 10:53:54.458 info Successfully connected to Hailo Libero device

                        hailo-libero.0
                        2025-10-28 10:53:54.446 warn Authentication failed or not required. Continuing without authentication.

                        hailo-libero.0
                        2025-10-28 10:53:54.445 warn Authentication did not redirect; treating as failure

                        hailo-libero.0
                        2025-10-28 10:53:52.050 info Connecting to Hailo Libero device...

                        hailo-libero.0
                        2025-10-28 10:53:51.993 info Initializing Hailo Libero adapter for device at 192.168.XXX.XXX:81

                        hailo-libero.0
                        2025-10-28 10:53:51.962 info starting. Version 0.0.2 (non-npm: Jey-Cee/ioBroker.hailo-libero#df3a7c60635e868648b95ec60b8823c88c0f3649) in /opt/iobroker/node_modules/iobroker.hailo-libero, node: v20.18.3, js-controller: 7.0.7

                        Ich habe übrigens auch über die "eigentliche" Konfigurationsseite die Einstellungen geändert, die vorgenommenen Änderungen (ich habe bspw. mal die Auswurfgeschwindigkeit verändert) kommen aber nicht im ioBroker an. Diese Richtung der Kommunikation funktioniert also leider auch nicht...

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

                        Support us

                        ioBroker
                        Community Adapters
                        Donate

                        690
                        Online

                        32.3k
                        Users

                        81.1k
                        Topics

                        1.3m
                        Posts

                        hailo libero skript
                        5
                        21
                        203
                        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