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 sagte in [ESPHome] Beta release:

      @malaus sagte in [ESPHome] Beta release:

      @dutchman sagte in [ESPHome] Beta release:

      @malaus sagte in [ESPHome] Beta release:

      Bei mir kommt ebenfalls die Fehlermeldung 25:

      welche NodeJS und NPM version benutzt du ?

      nodejs: v14.15.5

      npm: 6.14.11

      hmm hab ich auch und keine Probleme gehabt beim installieren, hast du es ueber die Katze it GitHub link gemacht oder ?

      Ja, einmal auf die Github Seite und auf Code geklickt - Link kopieren.

      und einmal direkt den Link von oben benutzt.

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

        @fredf sagte in [ESPHome] Beta release:

        @malaus sagte in [ESPHome] Beta release:

        nodejs: v14.15.5

        weiss nicht ob es daran liegt und bei mir läuft der Adpater, aber für ioBroker empfohlen ist 12.xx

        nicht unbedingt, 14 ist vol supported seit langen 🙂

        FredF 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 sagte in [ESPHome] Beta release:

          @malaus sagte in [ESPHome] Beta release:

          @dutchman sagte in [ESPHome] Beta release:

          @malaus sagte in [ESPHome] Beta release:

          Bei mir kommt ebenfalls die Fehlermeldung 25:

          welche NodeJS und NPM version benutzt du ?

          nodejs: v14.15.5

          npm: 6.14.11

          hmm hab ich auch und keine Probleme gehabt beim installieren, hast du es ueber die Katze it GitHub link gemacht oder ?

          Ja, einmal auf die Github Seite und auf Code geklickt - Link kopieren.

          und einmal direkt den Link von oben benutzt.

          probier mal per console :

          cd /opt/iobroker
          npm i iobroker.esphome@latest
          
          M 1 Reply Last reply Reply Quote 0
          • FredF
            FredF Most Active Forum Testing @Dutchman last edited by

            @dutchman ok

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

              @dutchman sagte in [ESPHome] Beta release:

              @malaus sagte in [ESPHome] Beta release:

              @dutchman sagte in [ESPHome] Beta release:

              @malaus sagte in [ESPHome] Beta release:

              @dutchman sagte in [ESPHome] Beta release:

              @malaus sagte in [ESPHome] Beta release:

              Bei mir kommt ebenfalls die Fehlermeldung 25:

              welche NodeJS und NPM version benutzt du ?

              nodejs: v14.15.5

              npm: 6.14.11

              hmm hab ich auch und keine Probleme gehabt beim installieren, hast du es ueber die Katze it GitHub link gemacht oder ?

              Ja, einmal auf die Github Seite und auf Code geklickt - Link kopieren.

              und einmal direkt den Link von oben benutzt.

              probier mal per console :

              cd /opt/iobroker
              npm i iobroker.esphome@latest
              

              Hat geklappt. Jetzt wird gemeckert, dass ich js-controller 3.2.0 benötige

              startInstance system.adapter.esphome.0Invalid version of "js-controller". Installed "3.1.6", required ">=3.2.0
              
              Dutchman 1 Reply Last reply Reply Quote 0
              • Dutchman
                Dutchman Developer Most Active Administrators @Malaus last edited by

                @malaus sagte in [ESPHome] Beta release:

                Hat geklappt. Jetzt wird gemeckert, dass ich js-controller 3.2.0 benötige

                deswegen ging es garantiert auch vorher schief 🙂

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

                  @dutchman sagte in [ESPHome] Beta release:

                  @malaus sagte in [ESPHome] Beta release:

                  Hat geklappt. Jetzt wird gemeckert, dass ich js-controller 3.2.0 benötige

                  deswegen ging es garantiert auch vorher schief 🙂

                  Hat nun funktioniert und bekomme auch eine Verbindung.
                  Momentan legt es bei mir die Daten nicht schön an. Liegt das an Esphome?
                  Bildschirmfoto 2021-02-28 um 15.32.34.png

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

                    @malaus sagte in [ESPHome] Beta release:

                    Momentan legt es bei mir die Daten nicht schön an. Liegt das an Esphome?

                    definiere nicht schoen ?

                    M 1 Reply Last reply Reply Quote 0
                    • 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
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            896
                                            Online

                                            31.6k
                                            Users

                                            79.6k
                                            Topics

                                            1.3m
                                            Posts

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