ESPHome Gerät wird bei ESPHOME Builder erkannt aber Entitäten nicht verfügbar

Hallo zusammen,

ich habe seit etwa einem halben Jahr einen Kincony A16, den ich erfolgreich mit ESPHome in Home Assistant integriert habe.
Anfangs wurden mir alle Entitäten korrekt angezeigt – besonders wichtig waren dabei die Temperatursensoren und ein Ausgang.

In Home Assistant habe ich dann eine einfache Steuerung erstellt:
Wenn das Heizungswasser unter 30 °C fällt, wird der Ausgang aktiviert und heizt es auf 50 °C auf. Danach schaltet sich der Ausgang wieder aus.

Das aktuelle Problem

Nun wollte ich zwei weitere Ausgänge und Inputs einrichten.
Dazu habe ich die .yaml-Datei angepasst und über das Internet neu installiert.

Seitdem wird mir das Gerät zwar als „Online“ angezeigt,
aber es erscheinen keine Entitäten mehr – weder Sensoren noch Ausgänge oder Inputs.

Was bisher funktioniert

Über den ESPHome Web Builder:

  • Das Gerät wird online erkannt
  • In den Logs werden die Temperaturwerte korrekt übermittelt

Frage

Woran kann das liegen?
Warum zeigt Home Assistant nach der YAML-Änderung keine Entitäten mehr an,
obwohl das Gerät online ist und Daten sendet?

Im Nachfolgend habe ich einmal die .Yaml, Logs und paar Screenshots.

esphome:
  name: "steuerung2"
  friendly_name: Steuerung

esp32:
  board: esp32dev
  framework:
    type: arduino

# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "***"

ota:
  - platform: esphome
    password: "***"

wifi:
  ssid: "***"
  password: "***"

  ap:
    ssid: "Steuerung Fallback Hotspot"
    password: "***"

i2c:
  sda: GPIO4
  scl:
    number: GPIO5
    ignore_strapping_warning: true

pcf8574:
  - id: inputs_1_8
    address: 0x22
    pcf8575: false
  - id: inputs_9_16
    address: 0x21
    pcf8575: false
  - id: outputs_1_8
    address: 0x24
    pcf8575: false
  - id: outputs_9_16
    address: 0x25
    pcf8575: false

# OneWire Bus
one_wire:
  - id: bus_one
    platform: gpio
    pin:
      number: 32
      mode:
        input: true
        pullup: true
  - id: bus_two
    platform: gpio
    pin:
      number: 33
      mode:
        input: true
        pullup: true

sensor:
  # DS18B20
  - platform: dallas_temp
    address: 0x99000000bceaed28
    one_wire_id: bus_one
    name: "Solar Rücklauf"
    update_interval: 1s

  - platform: dallas_temp
    address: 0xfe000000bf518328
    one_wire_id: bus_one
    name: "Trinkwasser unten"
    update_interval: 1s

  - platform: dallas_temp
    address: 0xed000000bedf6728
    one_wire_id: bus_one
    name: "Heizung Rücklauf"
    update_interval: 1s

  - platform: dallas_temp
    address: 0x61000000bb1acf28
    one_wire_id: bus_one
    name: "Heizung Vorlauf"
    update_interval: 1s

  - platform: dallas_temp
    address: 0x5b000000bcd07028
    one_wire_id: bus_two
    name: "Raum Temperatur"
    update_interval: 1s

  - platform: dallas_temp
    address: 0x38000000bee38428
    one_wire_id: bus_two
    name: "Trinkwasser Oben"
    update_interval: 1s

  - platform: dallas_temp
    address: 0xe0000000bf4c5e28
    one_wire_id: bus_two
    name: "Heizungswasser"
    update_interval: 1s

  - platform: dallas_temp
    address: 0xdc000000bb851728
    one_wire_id: bus_two
    name: "Solar Vorlauf"
    update_interval: 1s

binary_sensor:
  - platform: gpio
    name: "INPUT_Rollade_17_Runter"
    id: INPUT_Rollade_17_Runter
    pin:
      pcf8574: inputs_1_8
      number: 0
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Rollade_17_Runter
    on_release:
      - switch.turn_off: OUTPUT_Rollade_17_Runter

  - platform: gpio
    name: "INPUT_Rollade_17_Hoch"
    id: INPUT_Rollade_17_Hoch
    pin:
      pcf8574: inputs_1_8
      number: 1
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Rollade_17_Hoch
    on_release:
      - switch.turn_off: OUTPUT_Rollade_17_Hoch

  - platform: gpio
    name: "INPUT_Rollade_18_Runter"
    id: INPUT_Rollade_18_Runter
    pin:
      pcf8574: inputs_1_8
      number: 2
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Rollade_18_Runter
    on_release:
      - switch.turn_off: OUTPUT_Rollade_18_Runter

  - platform: gpio
    name: "INPUT_Rollade_18_Hoch"
    id: INPUT_Rollade_18_Hoch
    pin:
      pcf8574: inputs_1_8
      number: 3
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Rollade_18_Hoch
    on_release:
      - switch.turn_off: OUTPUT_Rollade_18_Hoch

  - platform: gpio
    name: "INPUT_Rollade_19_Runter"
    id: INPUT_Rollade_19_Runter
    pin:
      pcf8574: inputs_1_8
      number: 4
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Rollade_19_Runter
    on_release:
      - switch.turn_off: OUTPUT_Rollade_19_Runter

  - platform: gpio
    name: "INPUT_Rollade_19_Hoch"
    id: INPUT_Rollade_19_Hoch
    pin:
      pcf8574: inputs_1_8
      number: 5
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Rollade_19_Hoch
    on_release:
      - switch.turn_off: OUTPUT_Rollade_19_Hoch

  - platform: gpio
    name: "INPUT_Rollade_20_Runter"
    id: INPUT_Rollade_20_Runter
    pin:
      pcf8574: inputs_1_8
      number: 6
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Rollade_20_Runter
    on_release:
      - switch.turn_off: OUTPUT_Rollade_20_Runter

  - platform: gpio
    name: "INPUT_8"
    id: INPUT_8
    pin:
      pcf8574: inputs_1_8
      number: 7
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Rollade_20_Runter
    on_release:
      - switch.turn_off: OUTPUT_Rollade_20_Runter

  - platform: gpio
    name: "INPUT_Rollade_20_Hoch"
    id: INPUT_Rollade_20_Hoch
    pin:
      pcf8574: inputs_9_16
      number: 0
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Rollade_20_Hoch
    on_release:
      - switch.turn_off: OUTPUT_Rollade_20_Hoch

  - platform: gpio
    name: "INPUT_Tür"
    id: INPUT_Tuer
    pin:
      pcf8574: inputs_9_16
      number: 1
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Tuer
      - delay: 3s
      - switch.turn_off: OUTPUT_Tuer

  - platform: gpio
    name: "INPUT_Garage_Tor_1"
    id: INPUT_Garage_tor_1
    pin:
      pcf8574: inputs_9_16
      number: 2
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Garage_Tor_1
      - delay: 5s
      - switch.turn_off: OUTPUT_Garage_Tor_1

  - platform: gpio
    name: "INPUT_Garage_Tor_2"
    id: INPUT_garage_tor_2
    pin:
      pcf8574: inputs_9_16
      number: 3
      mode: INPUT
      inverted: true
    on_press:
      - switch.turn_on: OUTPUT_Garage_Tor_2
      - delay: 5s
      - switch.turn_off: OUTPUT_Garage_Tor_2

  - platform: gpio
    name: "INPUT_Offen_12"
    id: INPUT_Offen_12
    pin:
      pcf8574: inputs_9_16
      number: 4
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "INPUT_Offen_13"
    id: INPUT_Offen_13
    pin:
      pcf8574: inputs_9_16
      number: 5
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "INPUT_Offen_14"
    id: INPUT_Offen_14
    pin:
      pcf8574: inputs_9_16
      number: 6
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "INPUT_Offen_15"
    id: INPUT_Offen_15
    pin:
      pcf8574: inputs_9_16
      number: 7
      mode: INPUT
      inverted: true

switch:
  - platform: gpio
    id: OUTPUT_Rollade_17_Runter
    name: "OUTPUT_Rollade_17_Runter"
    pin:
      pcf8574: outputs_1_8
      number: 0
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Rollade_17_Hoch
    name: "OUTPUT_Rollade_17_Hoch"
    pin:
      pcf8574: outputs_1_8
      number: 1
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Rollade_18_Runter
    name: "OUTPUT_Rollade_18_Runter"
    pin:
      pcf8574: outputs_1_8
      number: 2
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Rollade_18_Hoch
    name: "OUTPUT_Rollade_18_Hoch"
    pin:
      pcf8574: outputs_1_8
      number: 3
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Rollade_19_Runter
    name: "OUTPUT_Rollade_19_Runter"
    pin:
      pcf8574: outputs_1_8
      number: 4
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Rollade_19_Hoch
    name: "OUTPUT_Rollade_19_Hoch"
    pin:
      pcf8574: outputs_1_8
      number: 5
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Rollade_20_Runter
    name: "OUTPUT_Rollade_20_Runter"
    pin:
      pcf8574: outputs_1_8
      number: 6
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Rollade_20_Hoch
    name: "OUTPUT_Rollade_20_Hoch"
    pin:
      pcf8574: outputs_1_8
      number: 7
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Tuer
    name: "OUTPUT_Tuer"
    pin:
      pcf8574: outputs_9_16
      number: 0
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Garage_Tor_1
    name: "OUTPUT_Garage_Tor_1"
    pin:
      pcf8574: outputs_9_16
      number: 1
      mode: OUTPUT
      inverted: true

  - platform: gpio
    id: OUTPUT_Garage_Tor_2
    name: "OUTPUT_Garage_Tor_2"
    pin:
      pcf8574: outputs_9_16
      number: 2
      mode: OUTPUT
      inverted: true

INFO ESPHome 2025.10.2
INFO Reading configuration /config/esphome/steuerung2.yaml...
INFO Starting log output from steuerung2.local using esphome API
INFO Successfully resolved steuerung2.local in 0.011s
INFO Successfully connected to steuerung2 @ 192.###.###.### in 0.095s
INFO Successful handshake with steuerung2 @ 192.###.###.### in 0.255s
[16:06:29.044][I][app:185]: ESPHome version 2025.10.2 compiled on Oct 25 2025, 03:34:14
[16:06:29.045][C][wifi:679]: WiFi:
[16:06:29.049][C][wifi:458]:   Local MAC: EC:E3:##:##:##:##
[16:06:29.051][C][wifi:465]:   IP Address: 192.###.###.###
[16:06:29.055][C][wifi:469]:   SSID: [redacted]
[16:06:29.055][C][wifi:469]:   BSSID: [redacted]
[16:06:29.055][C][wifi:469]:   Hostname: 'steuerung2'
[16:06:29.055][C][wifi:469]:   Signal strength: -65 dB ▂▄▆█
[16:06:29.055][C][wifi:469]:   Channel: 11
[16:06:29.055][C][wifi:469]:   Subnet: 255.255.255.0
[16:06:29.055][C][wifi:469]:   Gateway: 192.###.###.###
[16:06:29.055][C][wifi:469]:   DNS1: 192.###.###.###
[16:06:29.055][C][wifi:469]:   DNS2: 0.0.0.0
[16:06:29.061][C][pcf8574:024]: PCF8574:
[16:06:29.068][C][pcf8574:025]:   Address: 0x22
[16:06:29.071][C][pcf8574:026]:   Is PCF8575: NO
[16:06:29.079][C][pcf8574:024]: PCF8574:
[16:06:29.080][C][pcf8574:025]:   Address: 0x21
[16:06:29.095][C][pcf8574:026]:   Is PCF8575: NO
[16:06:29.095][C][pcf8574:024]: PCF8574:
[16:06:29.099][C][pcf8574:025]:   Address: 0x24
[16:06:29.101][C][pcf8574:026]:   Is PCF8575: NO
[16:06:29.112][C][pcf8574:024]: PCF8574:
[16:06:29.114][C][pcf8574:025]:   Address: 0x25
[16:06:29.116][C][pcf8574:026]:   Is PCF8575: NO
[16:06:29.124][C][logger:261]: Logger:
[16:06:29.124][C][logger:261]:   Max Level: DEBUG
[16:06:29.124][C][logger:261]:   Initial Level: DEBUG
[16:06:29.130][C][logger:267]:   Log Baud Rate: 115200
[16:06:29.130][C][logger:267]:   Hardware UART: UART0
[16:06:29.131][C][logger:274]:   Task Log Buffer Size: 768
[16:06:29.137][C][i2c.arduino:072]: I2C Bus:
[16:06:29.146][C][i2c.arduino:073]:   SDA Pin: GPIO4
[16:06:29.146][C][i2c.arduino:073]:   SCL Pin: GPIO5
[16:06:29.146][C][i2c.arduino:073]:   Frequency: 50000 Hz
[16:06:29.146][C][i2c.arduino:089]:   Recovery: bus successfully recovered
[16:06:29.146][I][i2c.arduino:099]: Results from bus scan:
[16:06:29.150][I][i2c.arduino:105]: Found device at address 0x21
[16:06:29.152][I][i2c.arduino:105]: Found device at address 0x22
[16:06:29.162][I][i2c.arduino:105]: Found device at address 0x24
[16:06:29.172][I][i2c.arduino:105]: Found device at address 0x25
[16:06:29.176][C][gpio.one_wire:021]: GPIO 1-wire bus:
[16:06:29.183][C][gpio.one_wire:022]:   Pin: GPIO32
[16:06:29.183][C][gpio.one_wire:084]:   Found devices:
[16:06:29.194][C][gpio.one_wire:086]:     0x99000000bceaed28 (DS18B20)
[16:06:29.196][C][gpio.one_wire:086]:     0xfe000000bf518328 (DS18B20)
[16:06:29.201][C][gpio.one_wire:086]:     0xed000000bedf6728 (DS18B20)
[16:06:29.212][C][gpio.one_wire:086]:     0x61000000bb1acf28 (DS18B20)
[16:06:29.218][C][gpio.one_wire:021]: GPIO 1-wire bus:
[16:06:29.219][C][gpio.one_wire:022]:   Pin: GPIO33
[16:06:29.222][C][gpio.one_wire:084]:   Found devices:
[16:06:29.224][C][gpio.one_wire:086]:     0x5b000000bcd07028 (DS18B20)
[16:06:29.232][C][gpio.one_wire:086]:     0x38000000bee38428 (DS18B20)
[16:06:29.248][C][gpio.one_wire:086]:     0xe0000000bf4c5e28 (DS18B20)
[16:06:29.249][C][gpio.one_wire:086]:     0xdc000000bb851728 (DS18B20)
[16:06:29.267][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Offen_12'
[16:06:29.269][C][gpio.binary_sensor:072]:   Pin: 4 via PCF8574
[16:06:29.275][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.275][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Offen_13'
[16:06:29.281][C][gpio.binary_sensor:072]:   Pin: 5 via PCF8574
[16:06:29.281][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.299][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Offen_14'
[16:06:29.299][C][gpio.binary_sensor:072]:   Pin: 6 via PCF8574
[16:06:29.300][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.305][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Offen_15'
[16:06:29.305][C][gpio.binary_sensor:072]:   Pin: 7 via PCF8574
[16:06:29.307][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.320][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Rollade_17_Runter'
[16:06:29.320][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.322][C][switch.gpio:029]:   Pin: 0 via PCF8574
[16:06:29.329][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Rollade_17_Hoch'
[16:06:29.329][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.335][C][switch.gpio:029]:   Pin: 1 via PCF8574
[16:06:29.355][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Rollade_18_Runter'
[16:06:29.355][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.358][C][switch.gpio:029]:   Pin: 2 via PCF8574
[16:06:29.369][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Rollade_18_Hoch'
[16:06:29.369][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.369][C][switch.gpio:029]:   Pin: 3 via PCF8574
[16:06:29.383][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Rollade_19_Runter'
[16:06:29.383][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.387][C][switch.gpio:029]:   Pin: 4 via PCF8574
[16:06:29.388][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Rollade_19_Hoch'
[16:06:29.388][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.393][C][switch.gpio:029]:   Pin: 5 via PCF8574
[16:06:29.406][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Rollade_20_Runter'
[16:06:29.406][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.409][C][switch.gpio:029]:   Pin: 6 via PCF8574
[16:06:29.413][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Rollade_20_Hoch'
[16:06:29.413][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.416][C][switch.gpio:029]:   Pin: 7 via PCF8574
[16:06:29.429][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Tuer'
[16:06:29.429][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.431][C][switch.gpio:029]:   Pin: 0 via PCF8574
[16:06:29.439][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Garage_Tor_1'
[16:06:29.439][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.445][C][switch.gpio:029]:   Pin: 1 via PCF8574
[16:06:29.454][C][switch.gpio:087]: GPIO Switch 'OUTPUT_Garage_Tor_2'
[16:06:29.454][C][switch.gpio:087]:   Restore Mode: always OFF
[16:06:29.457][C][switch.gpio:029]:   Pin: 2 via PCF8574
[16:06:29.463][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Rollade_17_Runter'
[16:06:29.469][C][gpio.binary_sensor:072]:   Pin: 0 via PCF8574
[16:06:29.469][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.480][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Rollade_17_Hoch'
[16:06:29.483][C][gpio.binary_sensor:072]:   Pin: 1 via PCF8574
[16:06:29.489][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.493][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Rollade_18_Runter'
[16:06:29.501][C][gpio.binary_sensor:072]:   Pin: 2 via PCF8574
[16:06:29.504][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.520][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Rollade_18_Hoch'
[16:06:29.521][C][gpio.binary_sensor:072]:   Pin: 3 via PCF8574
[16:06:29.524][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.530][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Rollade_19_Runter'
[16:06:29.532][C][gpio.binary_sensor:072]:   Pin: 4 via PCF8574
[16:06:29.540][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.551][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Rollade_19_Hoch'
[16:06:29.553][C][gpio.binary_sensor:072]:   Pin: 5 via PCF8574
[16:06:29.569][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.571][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Rollade_20_Runter'
[16:06:29.573][C][gpio.binary_sensor:072]:   Pin: 6 via PCF8574
[16:06:29.576][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.583][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_8'
[16:06:29.586][C][gpio.binary_sensor:072]:   Pin: 7 via PCF8574
[16:06:29.599][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.600][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Rollade_20_Hoch'
[16:06:29.603][C][gpio.binary_sensor:072]:   Pin: 0 via PCF8574
[16:06:29.605][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.627][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Tür'
[16:06:29.629][C][gpio.binary_sensor:072]:   Pin: 1 via PCF8574
[16:06:29.631][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.653][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Garage_Tor_1'
[16:06:29.655][C][gpio.binary_sensor:072]:   Pin: 2 via PCF8574
[16:06:29.658][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.681][C][gpio.binary_sensor:016]: GPIO Binary Sensor 'INPUT_Garage_Tor_2'
[16:06:29.682][C][gpio.binary_sensor:072]:   Pin: 3 via PCF8574
[16:06:29.684][C][gpio.binary_sensor:073]:   Mode: polling
[16:06:29.691][C][dallas.temp.sensor:029]: Dallas Temperature Sensor:
[16:06:29.691][C][dallas.temp.sensor:034]:   Address: 0x99000000bceaed28 (DS18B20)
[16:06:29.693][C][dallas.temp.sensor:035]:   Resolution: 12 bits
[16:06:29.696][C][dallas.temp.sensor:362]:   Update Interval: 1.0s
[16:06:29.707][C][dallas.temp.sensor:029]: Dallas Temperature Sensor:
[16:06:29.709][C][dallas.temp.sensor:034]:   Address: 0xfe000000bf518328 (DS18B20)
[16:06:29.711][C][dallas.temp.sensor:035]:   Resolution: 12 bits
[16:06:29.717][C][dallas.temp.sensor:362]:   Update Interval: 1.0s
[16:06:29.732][D][dallas.temp.sensor:054]: 'Raum Temperatur': Got Temperature=32.6°C
[16:06:29.737][D][sensor:131]: 'Raum Temperatur': Sending state 32.62500 °C with 1 decimals of accuracy
[16:06:29.743][C][dallas.temp.sensor:029]: Dallas Temperature Sensor:
[16:06:29.748][C][dallas.temp.sensor:034]:   Address: 0xed000000bedf6728 (DS18B20)
[16:06:29.757][C][dallas.temp.sensor:035]:   Resolution: 12 bits
[16:06:29.760][C][dallas.temp.sensor:362]:   Update Interval: 1.0s
[16:06:29.780][D][dallas.temp.sensor:054]: 'Trinkwasser Oben': Got Temperature=22.1°C
[16:06:29.780][D][sensor:131]: 'Trinkwasser Oben': Sending state 22.06250 °C with 1 decimals of accuracy
[16:06:29.795][D][dallas.temp.sensor:054]: 'Heizungswasser': Got Temperature=26.8°C
[16:06:29.795][D][sensor:131]: 'Heizungswasser': Sending state 26.81250 °C with 1 decimals of accuracy
[16:06:29.810][D][dallas.temp.sensor:054]: 'Trinkwasser unten': Got Temperature=16.0°C
[16:06:29.812][D][sensor:131]: 'Trinkwasser unten': Sending state 16.00000 °C with 1 decimals of accuracy
[16:06:29.836][D][dallas.temp.sensor:054]: 'Solar Vorlauf': Got Temperature=18.9°C
[16:06:29.837][D][sensor:131]: 'Solar Vorlauf': Sending state 18.93750 °C with 1 decimals of accuracy
[16:06:29.846][D][dallas.temp.sensor:054]: 'Heizung Vorlauf': Got Temperature=32.2°C
[16:06:29.848][D][sensor:131]: 'Heizung Vorlauf': Sending state 32.25000 °C with 1 decimals of accuracy
[16:06:29.864][D][dallas.temp.sensor:054]: 'Solar Rücklauf': Got Temperature=18.3°C
[16:06:29.869][D][sensor:131]: 'Solar Rücklauf': Sending state 18.31250 °C with 1 decimals of accuracy
[16:06:29.874][C][dallas.temp.sensor:029]: Dallas Temperature Sensor:
[16:06:29.879][C][dallas.temp.sensor:034]:   Address: 0x61000000bb1acf28 (DS18B20)
[16:06:29.879][C][dallas.temp.sensor:035]:   Resolution: 12 bits
[16:06:29.889][C][dallas.temp.sensor:362]:   Update Interval: 1.0s
[16:06:29.905][D][dallas.temp.sensor:054]: 'Heizung Rücklauf': Got Temperature=27.8°C
[16:06:29.908][D][sensor:131]: 'Heizung Rücklauf': Sending state 27.75000 °C with 1 decimals of accuracy
[16:06:29.919][C][dallas.temp.sensor:029]: Dallas Temperature Sensor:
[16:06:29.920][C][dallas.temp.sensor:034]:   Address: 0x5b000000bcd07028 (DS18B20)
[16:06:29.922][C][dallas.temp.sensor:035]:   Resolution: 12 bits
[16:06:29.929][C][dallas.temp.sensor:362]:   Update Interval: 1.0s
[16:06:29.935][C][dallas.temp.sensor:029]: Dallas Temperature Sensor:
[16:06:29.936][C][dallas.temp.sensor:034]:   Address: 0x38000000bee38428 (DS18B20)
[16:06:29.941][C][dallas.temp.sensor:035]:   Resolution: 12 bits
[16:06:29.943][C][dallas.temp.sensor:362]:   Update Interval: 1.0s
[16:06:29.952][C][dallas.temp.sensor:029]: Dallas Temperature Sensor:
[16:06:29.960][C][dallas.temp.sensor:034]:   Address: 0xe0000000bf4c5e28 (DS18B20)
[16:06:29.962][C][dallas.temp.sensor:035]:   Resolution: 12 bits
[16:06:29.971][C][dallas.temp.sensor:362]:   Update Interval: 1.0s
[16:06:30.032][C][dallas.temp.sensor:029]: Dallas Temperature Sensor:
[16:06:30.033][C][dallas.temp.sensor:034]:   Address: 0xdc000000bb851728 (DS18B20)
[16:06:30.035][C][dallas.temp.sensor:035]:   Resolution: 12 bits
[16:06:30.038][C][dallas.temp.sensor:362]:   Update Interval: 1.0s
[16:06:30.051][C][esphome.ota:093]: Over-The-Air updates:
[16:06:30.051][C][esphome.ota:093]:   Address: steuerung2.local:3232
[16:06:30.051][C][esphome.ota:093]:   Version: 2
[16:06:30.053][C][esphome.ota:100]:   Password configured
[16:06:30.060][C][safe_mode:018]: Safe Mode:
[16:06:30.060][C][safe_mode:018]:   Successful after: 60s
[16:06:30.060][C][safe_mode:018]:   Invoke after: 10 attempts
[16:06:30.060][C][safe_mode:018]:   Duration: 300s
[16:06:30.074][C][api:222]: Server:
[16:06:30.074][C][api:222]:   Address: steuerung2.local:6053
[16:06:30.074][C][api:222]:   Listen backlog: 4
[16:06:30.074][C][api:222]:   Max connections: 8
[16:06:30.076][C][api:229]:   Noise encryption: YES
[16:06:30.084][C][mdns:179]: mDNS:
[16:06:30.084][C][mdns:179]:   Hostname: steuerung2

Hast du Homeassistant schon einmal neu gestartet? Manchmal hilft das bei solchen Fällen…

Ich kenne dies nur, wenn es im ESPHome Builder zwar online ist, aber die API Verbindung zu HA nicht aufgebaut wird.

gilt nur für ESPHOME Integration, nicht Web:
Ist er immer noch in der ESPHOME Integration eingetragen?
API Schlüssel noch korrekt?
Neustart der Integration mal versuchen.

Gruß
Frank

Ja hat nichts gebracht.

Auch schon “Clean Build Files” gemacht und neu compiliert + geflasht?

Ich verwende für id’s konsequent Kleinbuchstaben und id’s und Namen sind immer unterschiedlich.

Ich habe das selbe Problem. Sensordaten werden im Log korrekte angezeigt. Das Gerät wird in HA auch angezeigt. Aber keine Entitäten (sensoren) in dem Gerät! Hat vorher alles funktioniert. Auf einmal nicht mehr! Alles gelöscht, neu angelegt, immer das selbe Spiel: Gerät in HA aber keine Sensoren (Entitäten). Was wurde verändert?

Hey

Bei mir hat es Funktioniert nach dem ich die Updates gemacht habe

Im Home Assistant Core und ESP Home