Skip to content
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. [ESPHome] Beta release

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.1k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.8k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.1k

[ESPHome] Beta release

Scheduled Pinned Locked Moved Tester
591 Posts 48 Posters 155.5k Views 39 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Malaus

    @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 Offline
    M Offline
    Malaus
    wrote on last edited by
    #22

    @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"
    
    DutchmanD 1 Reply Last reply
    0
    • M Malaus

      @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"
      
      DutchmanD Offline
      DutchmanD Offline
      Dutchman
      Developer Most Active Administrators
      wrote on last edited by
      #23

      @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
      0
      • DutchmanD Dutchman

        @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 Offline
        M Offline
        Malaus
        wrote on last edited by
        #24

        @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.

        DutchmanD 1 Reply Last reply
        0
        • M Malaus

          @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.

          DutchmanD Offline
          DutchmanD Offline
          Dutchman
          Developer Most Active Administrators
          wrote on last edited by Dutchman
          #25

          @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
          0
          • FredFF Online
            FredFF Online
            FredF
            Most Active Forum Testing
            wrote on last edited by FredF
            #26

            @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
            

            DutchmanD 1 Reply Last reply
            0
            • FredFF 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
              

              DutchmanD Offline
              DutchmanD Offline
              Dutchman
              Developer Most Active Administrators
              wrote on last edited by
              #27

              @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)

              FredFF 1 Reply Last reply
              0
              • DutchmanD Dutchman

                @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)

                FredFF Online
                FredFF Online
                FredF
                Most Active Forum Testing
                wrote on last edited by
                #28

                @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:~$
                
                

                DutchmanD 1 Reply Last reply
                0
                • FredFF FredF

                  @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:~$
                  
                  

                  DutchmanD Offline
                  DutchmanD Offline
                  Dutchman
                  Developer Most Active Administrators
                  wrote on last edited by
                  #29

                  @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

                  FredFF 1 Reply Last reply
                  0
                  • DutchmanD Dutchman

                    @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

                    FredFF Online
                    FredFF Online
                    FredF
                    Most Active Forum Testing
                    wrote on last edited by
                    #30

                    @dutchman Nope, gleiches Verhalten/Fehlermeldung

                    DutchmanD 1 Reply Last reply
                    0
                    • FredFF FredF

                      @dutchman Nope, gleiches Verhalten/Fehlermeldung

                      DutchmanD Offline
                      DutchmanD Offline
                      Dutchman
                      Developer Most Active Administrators
                      wrote on last edited by
                      #31

                      @fredf sagte in [ESPHome] Beta release:

                      @dutchman Nope, gleiches Verhalten/Fehlermeldung

                      @apollon77 hast du eventuell ne idee ?

                      apollon77A FredFF 2 Replies Last reply
                      0
                      • liv-in-skyL liv-in-sky

                        @dutchman

                        habe folgende ausgabe im log ( der dapter hat auch zusätzlich die 3 installierten esphomee's gefunden)
                        aber die hier ?

                        esphome.0	2021-02-28 11:08:55.937	error	(8216) ESPHome client 192.168.178.45 Error: connect ECONNREFUSED 127.0.0.1:6053
                        esphome.0	2021-02-28 11:08:55.936	error	(8216) ESPHome client 192.168.178.194 Error: connect ECONNREFUSED 127.0.0.1:6053
                        esphome.0	2021-02-28 11:08:55.935	info	(8216) Initiate 192.168.178.45
                        esphome.0	2021-02-28 11:08:55.933	info	(8216) Initiate 192.168.178.194
                        

                        diese beiden geräte sind ein firetv stick und ein echo show 8

                        die 3 real-existierenden esp's werden angezeigt:

                        Image 1.png

                        M Offline
                        M Offline
                        Markus_
                        wrote on last edited by
                        #32

                        @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
                        
                        DutchmanD 1 Reply Last reply
                        0
                        • DutchmanD Dutchman

                          @fredf sagte in [ESPHome] Beta release:

                          @dutchman Nope, gleiches Verhalten/Fehlermeldung

                          @apollon77 hast du eventuell ne idee ?

                          apollon77A Online
                          apollon77A Online
                          apollon77
                          wrote on last edited by
                          #33

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

                          Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                          • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                          • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                          DutchmanD 1 Reply Last reply
                          0
                          • apollon77A apollon77

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

                            DutchmanD Offline
                            DutchmanD Offline
                            Dutchman
                            Developer Most Active Administrators
                            wrote on last edited by
                            #34

                            @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
                            
                            apollon77A 1 Reply Last reply
                            0
                            • M Markus_

                              @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
                              
                              DutchmanD Offline
                              DutchmanD Offline
                              Dutchman
                              Developer Most Active Administrators
                              wrote on last edited by
                              #35

                              @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

                              DutchmanD 1 Reply Last reply
                              0
                              • DutchmanD Dutchman

                                @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
                                
                                apollon77A Online
                                apollon77A Online
                                apollon77
                                wrote on last edited by
                                #36

                                @dutchman js-controller 3.2??

                                Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                                • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                                • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                                FredFF 1 Reply Last reply
                                1
                                • apollon77A apollon77

                                  @dutchman js-controller 3.2??

                                  FredFF Online
                                  FredFF Online
                                  FredF
                                  Most Active Forum Testing
                                  wrote on last edited by
                                  #37

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

                                  apollon77A 1 Reply Last reply
                                  0
                                  • FredFF FredF

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

                                    apollon77A Online
                                    apollon77A Online
                                    apollon77
                                    wrote on last edited by
                                    #38

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

                                    Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                                    • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                                    • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                                    1 Reply Last reply
                                    1
                                    • M Offline
                                      M Offline
                                      mtaxer
                                      wrote on last edited by
                                      #39

                                      @dutchman Vielen Dank für die Integration. Ist geplant die "Light" Komponente mit einzubauen?

                                      SG
                                      Mario

                                      DutchmanD 1 Reply Last reply
                                      0
                                      • M mtaxer

                                        @dutchman Vielen Dank für die Integration. Ist geplant die "Light" Komponente mit einzubauen?

                                        SG
                                        Mario

                                        DutchmanD Offline
                                        DutchmanD Offline
                                        Dutchman
                                        Developer Most Active Administrators
                                        wrote on last edited by Dutchman
                                        #40

                                        @bigd-73 sagte in [ESPHome] Beta release:

                                        @dutchman Vielen Dank für die Integration. Ist geplant die "Light" Komponente mit einzubauen?

                                        SG
                                        Mario

                                        Kan ich einbauen sobald ich ein Beispiel dafür bekomme.
                                        Der Adapter sollte ne Meldung geben “type Not supporters. Und Dan Informationen geben die dem Entwickler geschickt werden müssen

                                        1 Reply Last reply
                                        0
                                        • M Offline
                                          M Offline
                                          mtaxer
                                          wrote on last edited by mtaxer
                                          #41

                                          @dutchman Danke für die schnelle Antwort ...
                                          Hier ein Link für einige Beispielkonfigurationen: QuinLED-Quad
                                          Für mich persönlich wäre die "1x RGBW" Led Strip Variante aus diesen Beispielen interessant.

                                          Log kann ich erst später analysieren ...

                                          Danke

                                          SG
                                          Mario

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          686

                                          Online

                                          32.4k

                                          Users

                                          81.4k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe