Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. [ESPHome] Beta release

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    [ESPHome] Beta release

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

      @dutchman na das zum Beispiel alles was mit "Palme Esstisch" zu tun hat im Ordner Palme Esstisch landet. Aber ich vermute mal, dass ich das im Esphome definieren muss, oder?

      Dutchman 1 Reply Last reply Reply Quote 0
      • Dutchman
        Dutchman Developer Most Active Administrators @Malaus last edited by Dutchman

        @malaus sagte in [ESPHome] Beta release:

        @dutchman na das zum Beispiel alles was mit "Palme Esstisch" zu tun hat im Ordner Palme Esstisch landet. Aber ich vermute mal, dass ich das im Esphome definieren muss, oder?

        jup, da wird halt der name vom sensor genommen, beispiel :

        # Example configuration for bh1750
        sensor:
          - platform: bh1750
            name: "Hal_Illuminance"
            address: 0x23
            measurement_time: 69
            update_interval: 10s
        

        wird Hal_Illuminance

        Schermafbeelding 2021-02-28 om 15.39.36.png

        Er übernimmt diesen namen jetzt auch im state, das ist bissl unpraktisch werde ich in naester version aendern nach state. Sensor name bleibt was du in ESPHome definierst

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

          @dutchman hast du da auch ein Beispiel, wie man das umbauen könnte, um es ordentlicher anzuzeigen? - Beschäftige mich erst seit gestern mit ESPHome.

          Momentan sieht das bei mir so aus:

          - platform: mhz19
              co2:
                name: "MH-Z19 CO2 Value"
              temperature:
                name: "MH-Z19 Temperature"
              update_interval: 30s
              automatic_baseline_calibration: false
          

          Kannste mir mal bitte deinem komplette Yaml geben (ohne Passwörter) Dan schau ich mal, Platform mhz19 hab ich noch nicht drin kommen bei dir Warnmeldungen im log ?

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

            @malaus sagte in [ESPHome] Beta release:

            @dutchman hast du da auch ein Beispiel, wie man das umbauen könnte, um es ordentlicher anzuzeigen? - Beschäftige mich erst seit gestern mit ESPHome.

            Momentan sieht das bei mir so aus:

            - platform: mhz19
                co2:
                  name: "MH-Z19 CO2 Value"
                temperature:
                  name: "MH-Z19 Temperature"
                update_interval: 30s
                automatic_baseline_calibration: false
            

            Kannste mir mal bitte deinem komplette Yaml geben (ohne Passwörter) Dan schau ich mal, Platform mhz19 hab ich noch nicht drin kommen bei dir Warnmeldungen im log ?

            Warnmeldungen habe ich keine. Erhalte auch die Werte.
            Hier ist das yaml:

            esphome:
              name: co2sensor
              platform: ESP32
              board: nodemcu-32s
            
            wifi:
              ssid: ""
              password: ""
            
              # Enable fallback hotspot (captive portal) in case wifi connection fails
              ap:
                ssid: "Co2Sensor Fallback Hotspot"
                password: "inIsxxv7oeHa"
            
            
            
            esp32_ble_tracker:
            
            api:
            
            
            captive_portal:
            
            # Enable logging
            logger:
            
            
            ota:
              password: ""
            
            # Example configuration entry
            web_server:
              port: 80
              
              
            # Example configuration entry
            mqtt:
              broker: 0.0.0.0
              username:
              password: 
              port: 1885
              
              
            
            # Example configuration entry
            uart:
              rx_pin: 16
              tx_pin: 17
              baud_rate: 9600
            
            sensor:
            
             
              - platform: wifi_signal
                name: "WiFi Signal Sensor"
                
            
              - platform: mhz19
                co2:
                  name: "MH-Z19 CO2 Value"
                temperature:
                  name: "MH-Z19 Temperature"
                update_interval: 30s
                automatic_baseline_calibration: false
                
            
            
              - platform: xiaomi_hhccjcy01
                mac_address: 'c4:7c:8d:66:11:31'
                temperature:
                  name: "Monstera Temperature"
                moisture:
                  name: "Monstera Moisture"
                illuminance:
                  name: "Monstera Illuminance"
                conductivity:
                  name: "Monstera Soil Conductivity"
                battery_level:
                  name: "Monstera Battery Level"
                  
              - platform: xiaomi_hhccjcy01
                mac_address: 'c4:7c:8d:66:12:25'
                temperature:
                  name: "Citrus Temperature"
                moisture:
                  name: "Citrus Moisture"
                illuminance:
                  name: "Citrus Illuminance"
                conductivity:
                  name: "Citrus Soil Conductivity"
                battery_level:
                  name: "Citrus Battery Level"
                  
              - platform: xiaomi_hhccjcy01
                mac_address: 'c4:7c:8d:66:12:35'
                temperature:
                  name: "Palme Temperature"
                moisture:
                  name: "Palme Moisture"
                illuminance:
                  name: "Palme Illuminance"
                conductivity:
                  name: "Palme Soil Conductivity"
                battery_level:
                  name: "Palme Battery Level"
                  
              - platform: xiaomi_hhccjcy01
                mac_address: 'c4:7c:8d:66:14:9b'
                temperature:
                  name: "Palme Esstisch Temperature"
                moisture:
                  name: "Palme Esstisch Moisture"
                illuminance:
                  name: "Palme Esstisch Illuminance"
                conductivity:
                  name: "Palme Esstisch Soil Conductivity"
                battery_level:
                  name: "Palme Esstisch Battery Level"
            
            Dutchman 1 Reply Last reply Reply Quote 0
            • Dutchman
              Dutchman Developer Most Active Administrators @Malaus last edited by

              @malaus sagte in [ESPHome] Beta release:

              Warnmeldungen habe ich keine. Erhalte auch die Werte.
              Hier ist das yaml:

              Danke, type sensor alles gut das ist implementiert kommst zurecht mit der Datei bezüglich Namen?

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

                @dutchman zurecht kommt man schon. Es gibt für jeden Wert einen extra Ordner.

                Schöner fände ich selbst, wenn es so aufgebaut wäre:
                Bildschirmfoto 2021-02-28 um 18.34.56.png

                Aber vielleicht bin ich da auch einfach zu verwöhnt.

                Dutchman 1 Reply Last reply Reply Quote 0
                • Dutchman
                  Dutchman Developer Most Active Administrators @Malaus last edited by Dutchman

                  @malaus sagte in [ESPHome] Beta release:

                  @dutchman zurecht kommt man schon. Es gibt für jeden Wert einen extra Ordner.

                  Schöner fände ich selbst, wenn es so aufgebaut wäre:
                  Bildschirmfoto 2021-02-28 um 18.34.56.png

                  Aber vielleicht bin ich da auch einfach zu verwöhnt.

                  Jup biste 😂, kan ich hardcoded machen und Dan müsst ihr bei jeder Änderung warten bist der Entwickler mal Zeit hat.
                  Habe es jetzt so dynamisch gebaut das es immer passt und sehr einfach zu erweitern ist

                  Beachte hier das ein Gerät viele verschiedenen Sensoren haben kan, also die Struktur ist

                  Gerät | Type | senorID | werte

                  Und Dan willste die Struktur schließe mal 60 ds18b20 an Dan weißte warum 😂

                  1 Reply Last reply Reply Quote 0
                  • FredF
                    FredF Most Active Forum Testing last edited by FredF

                    @Dutchman Ich hatte ja schon die 0.0.1 installiert gehabt, das update auf die 0.1.0 hat dann nicht geklappt. Deinstallieren und neu installieren ergab folgendes log. Adapter bleibt rot. Any idea?

                    2021-02-28 18:55:05.674 - info: host.ioBrokerVM iobroker url "https://github.com/iobroker-community-adapters/ioBroker.esphome.git"
                    2021-02-28 18:55:07.170 - info: host.ioBrokerVM iobroker install iobroker-community-adapters/ioBroker.esphome#7f27e520b9b4d4aff31e4007a0a22112b529d068
                    2021-02-28 18:55:07.362 - info: host.ioBrokerVM iobroker NPM version: 6.14.11npm install iobroker-community-adapters/ioBroker.esphome#7f27e520b9b4d4aff31e4007a0a22112b529d068 --loglevel error --prefix "/opt/iobroker" (System call)
                    2021-02-28 18:55:33.255 - info: host.ioBrokerVM iobroker upload [4] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/words.js words.js application/javascript
                    2021-02-28 18:55:33.345 - info: host.ioBrokerVM iobroker upload [3] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/style.css style.css text/css
                    2021-02-28 18:55:33.400 - info: host.ioBrokerVM iobroker upload [2] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/index_m.html index_m.html text/html
                    2021-02-28 18:55:33.454 - info: host.ioBrokerVM iobroker upload [1] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/esphome.png esphome.png image/png
                    2021-02-28 18:55:33.510 - info: host.ioBrokerVM iobroker upload [0] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/admin.d.ts admin.d.ts video/mp2t
                    2021-02-28 18:55:34.603 - info: host.ioBrokerVM iobroker exit 0
                    2021-02-28 18:55:35.450 - info: host.ioBrokerVM Updating repository "Stable (default)" under "http://download.iobroker.net/sources-dist.json"
                    2021-02-28 18:55:58.277 - info: host.ioBrokerVM iobroker add esphome --host ioBrokerVM
                    2021-02-28 18:55:59.364 - info: host.ioBrokerVM iobroker host.ioBrokerVM create instance esphome
                    2021-02-28 18:55:59.373 - info: host.ioBrokerVM iobroker host.ioBrokerVM object esphome.0.info.connection created
                    2021-02-28 18:55:59.401 - info: host.ioBrokerVM iobroker host.ioBrokerVM object esphome.0.info created
                    2021-02-28 18:55:59.433 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.logLevel created
                    2021-02-28 18:55:59.464 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.sigKill created
                    2021-02-28 18:55:59.493 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.eventLoopLag created
                    2021-02-28 18:55:59.522 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.outputCount created
                    2021-02-28 18:55:59.553 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.inputCount created
                    2021-02-28 18:55:59.585 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.uptime created
                    2021-02-28 18:55:59.614 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.memRss created
                    2021-02-28 18:55:59.643 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.memHeapTotal created
                    2021-02-28 18:55:59.680 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.memHeapUsed created
                    2021-02-28 18:55:59.713 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.cputime created
                    2021-02-28 18:55:59.746 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.cpu created
                    2021-02-28 18:55:59.776 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.compactMode created
                    2021-02-28 18:55:59.805 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.connected created
                    2021-02-28 18:55:59.835 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.alive created
                    2021-02-28 18:55:59.863 - info: host.ioBrokerVM iobroker host.ioBrokerVM Set default value of esphome.0.info.connection: false
                    2021-02-28 18:55:59.897 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0 created
                    2021-02-28 18:56:00.907 - info: host.ioBrokerVM iobroker exit 0
                    2021-02-28 18:56:02.971 - info: host.ioBrokerVM instance system.adapter.esphome.0 started with pid 24145
                    2021-02-28 18:56:03.746 - info: esphome.0 (24145) starting. Version 0.1.0 in /opt/iobroker/node_modules/iobroker.esphome, node: v12.21.0, js-controller: 3.2.16
                    2021-02-28 18:56:03.988 - error: esphome.0 (24145) uncaught exception: type rdhandoffF340B8D1-895A-47D4-BE75-0749071A6C85 has more than 20 characters
                    2021-02-28 18:56:03.988 - error: esphome.0 (24145) Error: type rdhandoffF340B8D1-895A-47D4-BE75-0749071A6C85 has more than 20 characters
                    at checkFormat (/opt/iobroker/node_modules/mdns-js/lib/service_type.js:244:11)
                    at exports.ServiceType.fromString (/opt/iobroker/node_modules/mdns-js/lib/service_type.js:118:5)
                    at new exports.ServiceType (/opt/iobroker/node_modules/mdns-js/lib/service_type.js:31:14)
                    at /opt/iobroker/node_modules/mdns-js/lib/decoder.js:40:27
                    at /opt/iobroker/node_modules/dns-js/lib/dnspacket.js:223:7
                    at Array.forEach ()
                    at module.exports.each (/opt/iobroker/node_modules/dns-js/lib/dnspacket.js:221:17)
                    at module.exports.decodeSection (/opt/iobroker/node_modules/mdns-js/lib/decoder.js:26:10)
                    at /opt/iobroker/node_modules/mdns-js/lib/decoder.js:111:5
                    at Array.forEach ()
                    2021-02-28 18:56:03.989 - error: esphome.0 (24145) type rdhandoffF340B8D1-895A-47D4-BE75-0749071A6C85 has more than 20 characters
                    2021-02-28 18:56:03.996 - info: esphome.0 (24145) terminating
                    2021-02-28 18:56:03.997 - warn: esphome.0 (24145) Terminated (UNCAUGHT_EXCEPTION): Without reason
                    2021-02-28 18:56:04.573 - error: host.ioBrokerVM instance system.adapter.esphome.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
                    2021-02-28 18:56:04.573 - info: host.ioBrokerVM Restart adapter system.adapter.esphome.0 because enabled
                    

                    Dutchman 1 Reply Last reply Reply Quote 0
                    • Dutchman
                      Dutchman Developer Most Active Administrators @FredF last edited by

                      @fredf sagte in [ESPHome] Beta release:

                      @Dutchman Ich hatte ja schon die 0.0.1 installiert gehabt, das update auf die 0.1.0 hat dann nicht geklappt. Deinstallieren und neu installieren ergab folgendes log. Adapter bleibt rot. Any idea?

                      2021-02-28 18:55:05.674 - info: host.ioBrokerVM iobroker url "https://github.com/iobroker-community-adapters/ioBroker.esphome.git"
                      2021-02-28 18:55:07.170 - info: host.ioBrokerVM iobroker install iobroker-community-adapters/ioBroker.esphome#7f27e520b9b4d4aff31e4007a0a22112b529d068
                      2021-02-28 18:55:07.362 - info: host.ioBrokerVM iobroker NPM version: 6.14.11npm install iobroker-community-adapters/ioBroker.esphome#7f27e520b9b4d4aff31e4007a0a22112b529d068 --loglevel error --prefix "/opt/iobroker" (System call)
                      2021-02-28 18:55:33.255 - info: host.ioBrokerVM iobroker upload [4] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/words.js words.js application/javascript
                      2021-02-28 18:55:33.345 - info: host.ioBrokerVM iobroker upload [3] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/style.css style.css text/css
                      2021-02-28 18:55:33.400 - info: host.ioBrokerVM iobroker upload [2] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/index_m.html index_m.html text/html
                      2021-02-28 18:55:33.454 - info: host.ioBrokerVM iobroker upload [1] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/esphome.png esphome.png image/png
                      2021-02-28 18:55:33.510 - info: host.ioBrokerVM iobroker upload [0] esphome.admin /opt/iobroker/node_modules/iobroker.esphome/admin/admin.d.ts admin.d.ts video/mp2t
                      2021-02-28 18:55:34.603 - info: host.ioBrokerVM iobroker exit 0
                      2021-02-28 18:55:35.450 - info: host.ioBrokerVM Updating repository "Stable (default)" under "http://download.iobroker.net/sources-dist.json"
                      2021-02-28 18:55:58.277 - info: host.ioBrokerVM iobroker add esphome --host ioBrokerVM
                      2021-02-28 18:55:59.364 - info: host.ioBrokerVM iobroker host.ioBrokerVM create instance esphome
                      2021-02-28 18:55:59.373 - info: host.ioBrokerVM iobroker host.ioBrokerVM object esphome.0.info.connection created
                      2021-02-28 18:55:59.401 - info: host.ioBrokerVM iobroker host.ioBrokerVM object esphome.0.info created
                      2021-02-28 18:55:59.433 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.logLevel created
                      2021-02-28 18:55:59.464 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.sigKill created
                      2021-02-28 18:55:59.493 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.eventLoopLag created
                      2021-02-28 18:55:59.522 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.outputCount created
                      2021-02-28 18:55:59.553 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.inputCount created
                      2021-02-28 18:55:59.585 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.uptime created
                      2021-02-28 18:55:59.614 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.memRss created
                      2021-02-28 18:55:59.643 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.memHeapTotal created
                      2021-02-28 18:55:59.680 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.memHeapUsed created
                      2021-02-28 18:55:59.713 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.cputime created
                      2021-02-28 18:55:59.746 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.cpu created
                      2021-02-28 18:55:59.776 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.compactMode created
                      2021-02-28 18:55:59.805 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.connected created
                      2021-02-28 18:55:59.835 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0.alive created
                      2021-02-28 18:55:59.863 - info: host.ioBrokerVM iobroker host.ioBrokerVM Set default value of esphome.0.info.connection: false
                      2021-02-28 18:55:59.897 - info: host.ioBrokerVM iobroker host.ioBrokerVM object system.adapter.esphome.0 created
                      2021-02-28 18:56:00.907 - info: host.ioBrokerVM iobroker exit 0
                      2021-02-28 18:56:02.971 - info: host.ioBrokerVM instance system.adapter.esphome.0 started with pid 24145
                      2021-02-28 18:56:03.746 - info: esphome.0 (24145) starting. Version 0.1.0 in /opt/iobroker/node_modules/iobroker.esphome, node: v12.21.0, js-controller: 3.2.16
                      2021-02-28 18:56:03.988 - error: esphome.0 (24145) uncaught exception: type rdhandoffF340B8D1-895A-47D4-BE75-0749071A6C85 has more than 20 characters
                      2021-02-28 18:56:03.988 - error: esphome.0 (24145) Error: type rdhandoffF340B8D1-895A-47D4-BE75-0749071A6C85 has more than 20 characters
                      at checkFormat (/opt/iobroker/node_modules/mdns-js/lib/service_type.js:244:11)
                      at exports.ServiceType.fromString (/opt/iobroker/node_modules/mdns-js/lib/service_type.js:118:5)
                      at new exports.ServiceType (/opt/iobroker/node_modules/mdns-js/lib/service_type.js:31:14)
                      at /opt/iobroker/node_modules/mdns-js/lib/decoder.js:40:27
                      at /opt/iobroker/node_modules/dns-js/lib/dnspacket.js:223:7
                      at Array.forEach ()
                      at module.exports.each (/opt/iobroker/node_modules/dns-js/lib/dnspacket.js:221:17)
                      at module.exports.decodeSection (/opt/iobroker/node_modules/mdns-js/lib/decoder.js:26:10)
                      at /opt/iobroker/node_modules/mdns-js/lib/decoder.js:111:5
                      at Array.forEach ()
                      2021-02-28 18:56:03.989 - error: esphome.0 (24145) type rdhandoffF340B8D1-895A-47D4-BE75-0749071A6C85 has more than 20 characters
                      2021-02-28 18:56:03.996 - info: esphome.0 (24145) terminating
                      2021-02-28 18:56:03.997 - warn: esphome.0 (24145) Terminated (UNCAUGHT_EXCEPTION): Without reason
                      2021-02-28 18:56:04.573 - error: host.ioBrokerVM instance system.adapter.esphome.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
                      2021-02-28 18:56:04.573 - info: host.ioBrokerVM Restart adapter system.adapter.esphome.0 because enabled
                      

                      Haste komplett deinstalliert oder nur die Instanzen gelöscht? Was für ein System ist das (Linux, Windows ? Und welche Node bzw npm Version)

                      FredF 1 Reply Last reply Reply Quote 0
                      • FredF
                        FredF Most Active Forum Testing @Dutchman last edited by

                        @dutchman komplett Adapter deinstalliert, die vorherige Version aht ja geklappt.

                        fred@ioBrokerVM:~$ iob -v
                        3.2.16
                        fred@ioBrokerVM:~$ iob status
                        iobroker is running on this host.
                        
                        
                        Objects type: jsonl
                        States  type: jsonl
                        fred@ioBrokerVM:~$ which nodejs && nodejs -v && which node && node -v && which npm && npm -v && apt policy nodejs
                        /usr/bin/nodejs
                        v12.21.0
                        /usr/bin/node
                        v12.21.0
                        /usr/bin/npm
                        6.14.11
                        nodejs:
                         Installiert:           12.21.0-1nodesource1
                         Installationskandidat: 12.21.0-1nodesource1
                         Versionstabelle:
                        *** 12.21.0-1nodesource1 500
                               500 https://deb.nodesource.com/node_12.x buster/main amd64 Packages
                               100 /var/lib/dpkg/status
                            10.24.0~dfsg-1~deb10u1 500
                               500 http://security.debian.org/debian-security buster/updates/main amd64 Packages
                            10.21.0~dfsg-1~deb10u1 500
                               500 http://deb.debian.org/debian buster/main amd64 Packages
                        fred@ioBrokerVM:~$
                        
                        

                        Dutchman 1 Reply Last reply Reply Quote 0
                        • Dutchman
                          Dutchman Developer Most Active Administrators @FredF last edited by

                          @fredf sagte in [ESPHome] Beta release:

                          @dutchman komplett Adapter deinstalliert, die vorherige Version aht ja geklappt.

                          fred@ioBrokerVM:~$ iob -v
                          3.2.16
                          fred@ioBrokerVM:~$ iob status
                          iobroker is running on this host.
                          
                          
                          Objects type: jsonl
                          States  type: jsonl
                          fred@ioBrokerVM:~$ which nodejs && nodejs -v && which node && node -v && which npm && npm -v && apt policy nodejs
                          /usr/bin/nodejs
                          v12.21.0
                          /usr/bin/node
                          v12.21.0
                          /usr/bin/npm
                          6.14.11
                          nodejs:
                           Installiert:           12.21.0-1nodesource1
                           Installationskandidat: 12.21.0-1nodesource1
                           Versionstabelle:
                          *** 12.21.0-1nodesource1 500
                                 500 https://deb.nodesource.com/node_12.x buster/main amd64 Packages
                                 100 /var/lib/dpkg/status
                              10.24.0~dfsg-1~deb10u1 500
                                 500 http://security.debian.org/debian-security buster/updates/main amd64 Packages
                              10.21.0~dfsg-1~deb10u1 500
                                 500 http://deb.debian.org/debian buster/main amd64 Packages
                          fred@ioBrokerVM:~$
                          
                          

                          Hmm ja was ich dir mit Sicherheit sagen kan ist da es ein NPM Installations Fehler ist der nicht vom Adapter selber kommt aus irgend einem Grund kan er da was nicht Auflösen.

                          Würde empfehlen mal den fixer drüber laufen U lassen

                          FredF 1 Reply Last reply Reply Quote 0
                          • FredF
                            FredF Most Active Forum Testing @Dutchman last edited by

                            @dutchman Nope, gleiches Verhalten/Fehlermeldung

                            Dutchman 1 Reply Last reply Reply Quote 0
                            • Dutchman
                              Dutchman Developer Most Active Administrators @FredF last edited by

                              @fredf sagte in [ESPHome] Beta release:

                              @dutchman Nope, gleiches Verhalten/Fehlermeldung

                              @apollon77 hast du eventuell ne idee ?

                              apollon77 FredF 2 Replies Last reply Reply Quote 0
                              • M
                                Markus_ @liv-in-sky last edited by

                                @liv-in-sky @Dutchman
                                Ich kann das Problem Bestätigen. Bei mir werden auch 2 Amazon Geräte gefunden

                                esphome.0	2021-02-28 19:59:03.324	error	(21729) ESPHome client 192.168.0.229 Error: connect ECONNREFUSED 127.0.0.1:6053
                                esphome.0	2021-02-28 19:59:03.322	error	(21729) ESPHome client 192.168.0.166 Error: connect ECONNREFUSED 127.0.0.1:6053
                                esphome.0	2021-02-28 19:59:03.320	info	(21729) Initiate 192.168.0.229
                                esphome.0	2021-02-28 19:59:03.318	info	(21729) Initiate 192.168.0.166
                                esphome.0	2021-02-28 19:58:33.322	error	(21729) ESPHome client 192.168.0.229 Error: connect ECONNREFUSED 127.0.0.1:6053
                                esphome.0	2021-02-28 19:58:33.320	error	(21729) ESPHome client 192.168.0.166 Error: connect ECONNREFUSED 127.0.0.1:6053
                                esphome.0	2021-02-28 19:58:33.316	info	(21729) Initiate 192.168.0.229
                                esphome.0	2021-02-28 19:58:33.315	info	(21729) Initiate 192.168.0.166
                                esphome.0	2021-02-28 19:58:03.322	error	(21729) ESPHome client 192.168.0.229 Error: connect ECONNREFUSED 127.0.0.1:6053
                                esphome.0	2021-02-28 19:58:03.317	error	(21729) ESPHome client 192.168.0.166 Error: connect ECONNREFUSED 127.0.0.1:6053
                                esphome.0	2021-02-28 19:58:03.311	info	(21729) Initiate 192.168.0.229
                                esphome.0	2021-02-28 19:58:03.303	info	(21729) Initiate 192.168.0.166
                                esphome.0	2021-02-28 19:57:33.498	error	(21729) ESPHome client 192.168.0.229 Error: connect ECONNREFUSED 192.168.0.229:6053
                                esphome.0	2021-02-28 19:57:33.487	info	(21729) Initiate 192.168.0.229
                                esphome.0	2021-02-28 19:57:33.486	info	(21729) [AutoDiscovery] New ESPHome device found at IP 192.168.0.229
                                esphome.0	2021-02-28 19:57:33.480	info	(21729) ESPHome client test on ip 192.168.0.179 initialized
                                esphome.0	2021-02-28 19:57:33.398	info	(21729) ESPHome Device info received for test
                                esphome.0	2021-02-28 19:57:33.386	error	(21729) ESPHome client 192.168.0.166 Error: connect ECONNREFUSED 192.168.0.166:6053
                                esphome.0	2021-02-28 19:57:33.382	info	(21729) ESPHome client 192.168.0.179 connected
                                esphome.0	2021-02-28 19:57:33.375	info	(21729) Initiate 192.168.0.166
                                esphome.0	2021-02-28 19:57:33.373	info	(21729) [AutoDiscovery] New ESPHome device found at IP 192.168.0.166
                                esphome.0	2021-02-28 19:57:33.296	info	(21729) Initiate 192.168.0.179
                                esphome.0	2021-02-28 19:57:33.183	info	(21729) starting. Version 0.1.0 in /opt/iobroker/node_modules/iobroker.esphome, node: v12.20.2, js-controller: 3.2.16
                                esphome.0	2021-02-28 19:57:22.693	warn	(6761) ESPHome client 192.168.0.179 disconnected
                                esphome.0	2021-02-28 19:57:22.692	warn	(6761) ESPHome client 192.168.0.179 disconnected
                                esphome.0	2021-02-28 19:57:22.683	info	(6761) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                esphome.0	2021-02-28 19:57:22.681	info	(6761) terminating
                                esphome.0	2021-02-28 19:57:22.675	info	(6761) Got terminate signal TERMINATE_YOURSELF
                                esphome.0	2021-02-28 19:50:09.656	info	(6761) ESPHome client test on ip 192.168.0.179 initialized
                                esphome.0	2021-02-28 19:50:09.604	info	(6761) ESPHome Device info received for test
                                esphome.0	2021-02-28 19:50:09.586	info	(6761) ESPHome client 192.168.0.179 connected
                                esphome.0	2021-02-28 19:50:09.467	info	(6761) Initiate 192.168.0.179
                                esphome.0	2021-02-28 19:50:09.449	info	(6761) [AutoDiscovery] New ESPHome device found at IP 192.168.0.179
                                
                                Dutchman 1 Reply Last reply Reply Quote 0
                                • apollon77
                                  apollon77 @Dutchman last edited by

                                  @dutchman Was ist die Frage? Install läuft ja durch, dann crasht der Adapter ...

                                  Dutchman 1 Reply Last reply Reply Quote 0
                                  • Dutchman
                                    Dutchman Developer Most Active Administrators @apollon77 last edited by

                                    @apollon77 sagte in [ESPHome] Beta release:

                                    @dutchman Was ist die Frage? Install läuft ja durch, dann crasht der Adapter ...

                                    ging hierum :

                                    @malaus sagte in [ESPHome] Beta release:

                                    Bei mir kommt ebenfalls die Fehlermeldung 25:

                                    $ ./iobroker url "https://github.com/iobroker-community-adapters/ioBroker.esphome"
                                    Info: Can not get current GitHub commit, we remember master branch only. Status: 422 (No commit found for SHA: master)
                                    install https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master
                                    NPM version: 6.14.11
                                    npm install https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master --loglevel error --prefix "/opt/iobroker" (System call)
                                    npm
                                     ERR! code E404
                                    npm
                                     ERR! 
                                    404 Not Found - GET https://codeload.github.com/iobroker-community-adapters/ioBroker.esphome/legacy.tar.gz/master
                                    npm ERR!
                                     404 
                                    npm ERR!
                                     404  'https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master' is not in the npm registry.
                                    npm ERR!
                                     404 Your package name is not valid, because 
                                    npm ERR!
                                     
                                    404  1. name can only contain URL-friendly charactersnpm ERR! 404  2. name can no longer contain capital lettersnpm ERR! 404 npm ERR! 404 Note that you can also install from anpm ERR! 404 tarball, folder, http url, or git url.
                                    npm ERR! A complete log of this run can be found in:npm ERR!     /home/iobroker/.npm/_logs/2021-02-28T11_14_11_035Z-debug.log
                                    ERROR: host.raspberrypi Cannot install https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master: 1
                                    ERROR: process exited with code 25
                                    
                                    apollon77 1 Reply Last reply Reply Quote 0
                                    • Dutchman
                                      Dutchman Developer Most Active Administrators @Markus_ last edited by

                                      @markus_ sagte in [ESPHome] Beta release:

                                      Ich kann das Problem Bestätigen. Bei mir werden auch 2 Amazon Geräte gefunden

                                      ok thanks kan es reproduzieren und beheben

                                      Dutchman 1 Reply Last reply Reply Quote 0
                                      • apollon77
                                        apollon77 @Dutchman last edited by

                                        @dutchman js-controller 3.2??

                                        FredF 1 Reply Last reply Reply Quote 1
                                        • FredF
                                          FredF Most Active Forum Testing @apollon77 last edited by

                                          @apollon77 Ja.
                                          https://forum.iobroker.net/topic/42741/esphome-beta-release/28?_=1614580980648

                                          apollon77 1 Reply Last reply Reply Quote 0
                                          • apollon77
                                            apollon77 @FredF last edited by

                                            @fredf Dann bitte dafürmal js.controller issue anlegen. müssen wir da ansehen.

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            894
                                            Online

                                            31.6k
                                            Users

                                            79.6k
                                            Topics

                                            1.3m
                                            Posts

                                            48
                                            591
                                            104147
                                            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