Grüß Euch!
Habe jetzt 2 tage damit verbracht im Forum dies bezüglich etwas zu finden und auch im Web.
Abgesehen davon finde ich keinen Fehler, hab auch nichts geändert, und nun weis ich nicht mehr weiter
Grüß Euch!
Habe jetzt 2 tage damit verbracht im Forum dies bezüglich etwas zu finden und auch im Web.
Abgesehen davon finde ich keinen Fehler, hab auch nichts geändert, und nun weis ich nicht mehr weiter
Du hast ja noch bis zum November-Update Zeit, den “Hinweis” zu bearbeiten.
Hast Du mal versucht, die o.g. ID’s umzubenennen?
BTW:
Post doch mal den entsprechenden ESP-Code in </> hier, dann können wir Dir evtl. besser helfen.
Servus!
Ja hab ich bereits versucht.
Hier der Code für den einen troublemaker
esphome:
name: craftroom-env
friendly_name: Craftroom-ENV
esp8266:
board: esp01_1m
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "EC+46WU6G7O1rJYiHmhxqgB5fDwj2zDwisqx4HrX5Zc="
ota:
- platform: esphome
password: "ebe8a6d362d4fee763e54aff8acef534"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Craftroom-Env Fallback Hotspot"
password: "dknFZEzwUqhE"
captive_portal:
sensor:
- platform: dht
model: DHT22
pin: GPIO1
temperature:
name: "Bastelraum Temperature"
id: bme280_temperature
humidity:
name: "Bastelraum Humidity"
id: bme280_humidity
update_interval: 60s
- platform: absolute_humidity
name: "Bastelraum Absolute Humidity"
id: absolute_humiditycraft
temperature: bme280_temperature
humidity: bme280_humidity
- platform: template
name: "Bastelraum Taupunkt"
id: taupunkt_bastelraum
lambda: |-
return (243.5*(log(id(bme280_humidity).state/100)+((17.67*id(bme280_temperature).state)/
(243.5+id(bme280_temperature).state)))/(17.67-log(id(bme280_humidity).state/100)-
((17.67*id(bme280_temperature).state)/(243.5+id(bme280_temperature).state))));
unit_of_measurement: °C
icon: 'mdi:thermometer-alert'
- platform: wifi_signal
name: "Craftroom Signal"
id: wifi_craftroom
update_interval: 60s
icon: mdi:wifi
und der zweite
esphome:
name: rainfall
friendly_name: Rainfall
esp8266:
board: esp12e
logger:
api:
encryption:
key: "Z8bytCKyYFuI6lorjSsPpkpECesOragGLHrW5HaP69M="
ota:
- platform: esphome
password: "ac953ef7926a9e2f3a6d618c9f21ea90"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ap:
ssid: "Rainfall Fallback Hotspot"
password: "3hZRRXZRkIUU"
captive_portal:
sensor:
- platform: wifi_signal
name: "Rainfall Signal"
id: wifi_rainfall
update_interval: 60s
icon: mdi:wifi
- platform: pulse_counter
pin: GPIO14
unit_of_measurement: 'mm'
name: 'Regenmenge'
id: rainfall
filters:
- multiply: 0.52945
count_mode:
rising_edge: DISABLE
falling_edge: INCREMENT
Jeder für sich tut ja was er soll