Replies: 2 comments 4 replies
-
|
I updated Yaml 4 days ago. by default, sensors are commented out. https://github.com/PricelessToolkit/Droplet?tab=readme-ov-file#setting-the-onboard-ds18b20-temperature-sensor Dallas https://esphome.io/components/sensor/dallas_temp.html Old - platform: bmp280New - platform: bmp280_i2cFull - platform: bmp280_i2c
temperature:
name: "${name} bmp280 Temperature"
oversampling: 16x
pressure:
name: "${name} bmp280 Pressure"
id: "pressure"
address: 0x76
update_interval: 5s
Uncomment only sensors that you are using. # DHT TMP and HUMIDITY SENSOR # https://esphome.io/components/sensor/dht.html Delet if not used
#- platform: dht
# pin: 5
# temperature:
# name: "${name} DHT Temperature"
# id: "dhttemperature"
# humidity:
# name: "${name} DHT Humidity"
# id: "dhthumidity"
# update_interval: 5s
# DISTANCE SENSOR # # You can measure the height of the plant and plot the growth reight # https://esphome.io/components/sensor/vl53l0x.html?highlight=vl53l0 Delet if not used
#- platform: vl53l0x
# name: "${name} VL53L0x Distance"
# id: "distance"
# address: 0x29
# update_interval: 2s
# long_range: true
# BMP280 TMP and HUMIDITY SENSOR # https://esphome.io/components/sensor/bmp280.html?highlight=bmp280 Delet if not used
#- platform: bmp280_i2c
# temperature:
# name: "${name} bmp280 Temperature"
# oversampling: 16x
# pressure:
# name: "${name} bmp280 Pressure"
# id: "pressure"
# address: 0x76
# update_interval: 5s
# https://esphome.io/components/sensor/dallas_temp.html
#- platform: dallas_temp
# address: 0x6e3c......
# name: "${name} Integrated TMP"
# id: "intergratedtmp" |
Beta Was this translation helpful? Give feedback.
-
|
I had already tried renaming it (see above ).... The log states a communication error for BHP: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
There seems to be an issue with the current yaml. We're getting:
renaming the component to bmp280_i2c doesnt solve the problem.
also, the dallas -page mentioned in a previous post as a solution to this doesn't exist anymore: https://esphome.io/components/sensor/dallas.html
so all sensors report 'unknown':
Beta Was this translation helpful? Give feedback.
All reactions