Ich habe “erfolgreich” esphome installiert und die Temperatursensoren integriert (entsprechend der Anleitung von Simon).
Es klappt auch alles, solange ich nur 2 Temperatursensoren anschließe. Die Sensoren werden erkannt und liefern die richtigen Werte.
Wenn ich 3 Sensoren anschließe, werden jeweils 0.0 Grad angezeigt. Ich habe auch schon Sensoren getauscht, ohne Erfolg. Laut vielen Einträgen im Forum sollten aber mehr als 2 Sensoren angeschlossen werden können. Hat jemand eine Idee, wo der Fehler liegen könnte? Der yaml-code:
esphome:
name: esp-home-heizungskeller
friendly_name: ESP-Home Heizungskeller
esp8266:
board: esp01_1m
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "oVGY7glin3ub05kTFrIFNZ25hCU1lRe3bPfUD7uLMTA="
ota:
- platform: esphome
password: "1d7c385b64ee0f434a103cd9e572b13e"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Esp-Home-Heizungskeller"
password: "w09lF8d2eAP1"
captive_portal:
# Example configuration entry
# Example configuration entry
one_wire:
- platform: gpio
pin:
number: GPIO2
mode:
input: true
pullup: true
# Individual sensors
sensor:
- platform: dallas_temp
address: 0xb4000000beb7b128
name: "Brauchwassertemperatur"
unit_of_measurement: "°C"
icon: "mdi:thermometer-plus"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 2
- platform: dallas_temp
address: 0x17000000bfc76628
name: " Vorlauftemperatur "
unit_of_measurement: "°C"
icon: "mdi:thermometer-plus"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 2
- platform: dallas_temp
address: 0x6d000000bd57cf28
name: " Nachlauftemperatur "
unit_of_measurement: "°C"
icon: "mdi:thermometer-plus"
device_class: "temperature"
state_class: "measurement"
accuracy_decimals: 2
